electronic gradebook

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

how do i put in the formula to get a letter grade by using percentage. for
instace 100 - 90 = A
89 - 70 = B and so on using Excel.
 
Nel post *shug* ha scritto:
how do i put in the formula to get a letter grade by using
percentage. for instace 100 - 90 = A
89 - 70 = B and so on using Excel.

You can use VLOOKUP with last parameter set to TRUE. You have to build a
table, in ascending order of values, and then use the VLOOKUP function.
--
Hope I helped you.

Thanks in advance for your feedback.

Ciao

Franz Verga from Italy
 
=IF(A1>89,"A",IF(A1>69,"B",IF(A1>59,"C",IF(A1>49,"D",IF(A1<50,"F",0)))))

You will of course have to change the numbers in the formula for your D and
F etc.
 
shug

To convert scores to letter grades use a Lookup table and VLOOKUP functions.

OR a Lookup formula without a table

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. Adapt for your scores and grades.

Note the curly braces internally.


Gord Dibben MS Excel MVP

how do i put in the formula to get a letter grade by using percentage. for
instace 100 - 90 = A
89 - 70 = B and so on using Excel.

Gord Dibben MS 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

Similar Threads


Back
Top