Grade Percentage into letter grade

G

Guest

What formula would I use to turn a class percentage into a letter grade. If
a student has a 94% for the class how do I get excel to relflect that into an
a if the range is 90-100%?
 
R

RagDyer

Try something like this:

=LOOKUP(A1,{0,60,70,80,90;"E","D","C","B","A"})

Revise the values to suit.
--
HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================
 
G

Guest

Thanks alot! That worked perfect.

RagDyer said:
Try something like this:

=LOOKUP(A1,{0,60,70,80,90;"E","D","C","B","A"})

Revise the values to suit.
--
HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================
 
G

Gord Dibben

James

Assuming scores are in column A starting at A1.

In B1 enter this formula then drag/copy down column B

=LOOKUP(A1,{0,31,41,51,61,71,81,91,101},{"E","D","C-","C","C+","B","B+","A"})

Example only, change the number ranges to suit.


Gord Dibben Excel MVP
 

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