Grades

C

Chi

Hi,

Would you please help me to write a formula to calculate grades?

Ex: 100 - 90 = A
89 - 80 = B
79 - 70 = C
69 - 60 = D
59 and below = F

Thank you
Chi
 
L

Luke M

Create a table in A2:B6 that looks like this:

ColA..ColB
100....A
89......B
79.....C
69.....D
59.....F

Assuming your score to check is in A10, formula is:

=INDEX($B$2:$B$6,MATCH(A10,$A$2:$A$6,-1))
 
S

Stephen C

Assuming your score is in B2, formula is:

=IF(B2>=90,"A",IF(B2>=80,"B",IF(B2>=70,"C",IF(B2>=60,"D","E"))))
 

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

Similar Threads


Top