View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Gord Dibben Gord Dibben is offline
external usenet poster
 
Posts: 22,906
Default How do I assign a letter value to a range of data?

With column of scores in A enter this in B1 and double-click to copy down.

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

Adjust for score ranges or more letter grades like C+, B- etc.

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


Gord Dibben MS Excel MVP


On Sat, 16 Sep 2006 08:09:01 -0700, clatters69
wrote:

I want to create a column of percentage scores which will be test results for
students. I teh want to convert the percentage scores into grades. For
example, if a pupil scores between 80% and 90% this can be corresponds to
garde A. How can this be done?