I'm not sure of your grading system, but of you set up a table with the change point of each grade in ascending order, with the grade it changes to at that point in the next column, you could use VLOOKUP, eg.
Score Grade
70 C
80 B
90 C
The 70 is in cell A2, C is in cell B4, your score is in cell D1. the formula would be =VLOOKUP(D1,$A$2:$B$4,2).
Make sense?
Richard
Thank you for the suggestion. I thought about a lookup table, but I am sure there is an easier way. If I dont find out than I will use your suggestion.
Thanx again.
Martha
Following up Richard's suggestion:
=VLOOKUP(A1,{0,"F";60,"D";70,"C-";75,"C";77,"C+";80,"B-";85,"B";87,"B+";90,"A-";94,"A";98,"A+"},2)
Adapt the constant array (which is an equivalent of a 2-column table) to your situation if needed.
Aladin