Nested IF to deep

K

Kostis Vezerides

Bill,
in cases like this, VLOOKUP() is the ideal function. One
more note before I continue, your condition C4>98.49, is
safer for what you want if you replace it with C4>=98.5,
which I suspect is your intention.

How to proceed:
Go to a column and write the grade interval numbers in
ascending order, starting with 0. Next to them write the
grade that corresponds to the interval *starting* with the
number. Suppose you do this in columns J:K
J K
------
0 F
60 D-
63.5 D
68.5 D+
........
98.5 A+

Then use the formula
=VLOOKUP(C4, J:K, 2, TRUE)

Modify the numbers as necessary.

HTH
Kostis Vezerides
-----Original Message-----
Can someone help me with this formula to come up with a
better way of doing, more importantly one that will return
the results required that fits the parameters of nested if.
=IF(C4>98.49,"A+",IF(C4>95.49,"A",IF(C4>91.49,"A-",IF
(C4>87.49,"B+",IF(C4>83.49,"B",IF(C4>79.49,"B-",IF
(C4>74.49,"C+",IF(C4>69.49,"C","F",IF(AND
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top