convert precentage to text (grades)

D

Dajani

Please help!! I want to use the precentage in one colum to display a letter grade in another colum.
 
P

Peo Sjoblom

Here's an example

=IF(A1="","",VLOOKUP(A1,{0,"F";0.6,"D";0.7,"C";0.8,"B";0.9,"A"},2))

change the grades/percentages to fit

--

Regards,

Peo Sjoblom


Dajani said:
Please help!! I want to use the precentage in one colum to display a
letter grade in another colum.
 
J

Jason Morin

One way:

=LOOKUP(A1*100,{0,60,70,80,90},{"F","D","C","B","A"})

HTH
Jason
Atlanta, GA
-----Original Message-----
Please help!! I want to use the precentage in one colum
to display a letter grade in another colum.
 
Top