J
jef
I am currently comparing the contents on two cells in columns H & I
(for example, cells H10 and I10). The contents are letter grades
(i.e., A, A-, B+, B, etc., through E). I have my function tell me if
there is any difference between the two columns and report the result
(i.e., “no change,” rating decrease,” or “rating increase”) in the
adjoining column, J10. I use the MATCH function, and since it can’t
distinguish between the letter grades, I have placed the letter grades
in cells M2 through M13. My function is as follows:
=IF(MATCH(H10,M$2:M$13,0)=MATCH(I10,M$2:M$13,0),"No
Change",IF(MATCH(H10,M$2:M$13,0)>MATCH(I10,M$2:M$13,0),"Rating
Decrease","Rating Increase"))
I need to modify the function to distinguish between a “range” of
contents in each cell and provide a similar result in the next column/
cell, J10. I want the function to tell me if cell I10 currently
contains any letter grade from A through C (M2:M8) and cell H10
contains the following to provide the corresponding result:
if H10 contains C- through E (M9:M13), then have a result of “Rating
Decrease;”
if H10 contains A through C (M2:M8), then have a result of “No
Change;”
Conversely, if cell I10 currently contains any letter grade from C-
through E (M9:M13) and cell H10 contains the following to provide the
corresponding result:
if H10 contains C- through E (M9:M13), then have a result of “No
Change;”
if H10 contains A through C (M2:M8), then have a result of “Rating
Increase;”
Can anyone please help? I hope this is a simple modification of the
current MATCH function. Thanks in advance.
(for example, cells H10 and I10). The contents are letter grades
(i.e., A, A-, B+, B, etc., through E). I have my function tell me if
there is any difference between the two columns and report the result
(i.e., “no change,” rating decrease,” or “rating increase”) in the
adjoining column, J10. I use the MATCH function, and since it can’t
distinguish between the letter grades, I have placed the letter grades
in cells M2 through M13. My function is as follows:
=IF(MATCH(H10,M$2:M$13,0)=MATCH(I10,M$2:M$13,0),"No
Change",IF(MATCH(H10,M$2:M$13,0)>MATCH(I10,M$2:M$13,0),"Rating
Decrease","Rating Increase"))
I need to modify the function to distinguish between a “range” of
contents in each cell and provide a similar result in the next column/
cell, J10. I want the function to tell me if cell I10 currently
contains any letter grade from A through C (M2:M8) and cell H10
contains the following to provide the corresponding result:
if H10 contains C- through E (M9:M13), then have a result of “Rating
Decrease;”
if H10 contains A through C (M2:M8), then have a result of “No
Change;”
Conversely, if cell I10 currently contains any letter grade from C-
through E (M9:M13) and cell H10 contains the following to provide the
corresponding result:
if H10 contains C- through E (M9:M13), then have a result of “No
Change;”
if H10 contains A through C (M2:M8), then have a result of “Rating
Increase;”
Can anyone please help? I hope this is a simple modification of the
current MATCH function. Thanks in advance.