Oct 31 2023 06:06 AM
Hello Everyone !
I need help using the if formula on excel. What i need to do, is if the student made less than 4, it's A. Between 5 and 7 B. Between 8 and 10, C. Between 11 and 13 D and lastly, equals or more to 14 E. The formula i tried works with A and E, but not all the rest. I have tried many variations with no luck... Any help ?
Oct 31 2023 06:18 AM - edited Oct 31 2023 06:18 AM
Place your limits in a small table, for instance like this:
A | B | |
1 | 4 | a |
2 | 5 | b |
3 | 8 | c |
4 | 11 | d |
5 | 14 | e |
Suppose your grade is in cell C1, then this formula gets the letter belonging to that grade:
=XLOOKUP(C1,$A$1:$A$5,$B$1:$B$5,"NA",1,)
Oct 31 2023 06:26 AM
Oct 31 2023 09:25 AM
Oct 31 2023 03:09 PM