You can add AND like: =IF(AND(A12>=71,A12<=80),"A",IF(A12>=57,"B",IF(A12>=40,"C","F")))
but that will produce wrong results if someone has 81 (and probably we are looking at grades).
Explain what shall be output when value exceeds 80.
You can add AND like: =IF(AND(A12>=71,A12<=80),"A",IF(A12>=57,"B",IF(A12>=40,"C","F")))
but that will produce wrong results if someone has 81 (and probably we are looking at grades).
Explain what shall be output when value exceeds 80.
Just to clarify. Score 81 should not be evaluated. One of the solutions I have is the one you mention, like minded brains think the same.
I am, not sure what a good way is to cut off evaluation when entering 81+ and how the ending of evaluation is done in a neatly way. That is why I am posting. Is there a better way than IF statements or can it be done w/ an IF statement?