Assigning Letter Grades in a grade book
I would like the ranges to be set as
90 - 100 = A
80 - 90 = B
70 - 80 = C
60 - 70 = D
< 60 = F
I tried using the IF clause as
=IF(Total >90,"A",IF(Total > 80,"B", IF(Total >70,"C", IF(Total > 60,"D", IF(Total < 60, "F")))))
Somehow, the Letter grade assigned is always F. Any pointers? How can I combine 2 condition checks, such as IF(Total > 80 & < 90)?
Thanks in advance
MacBook, iPhone 8 GB, Mac OS X (10.4.10)
