IF Formula to convert numeric grades to letter grades with + and -?

absinthe

New Member
Joined
Nov 24, 2015
Messages
5
Hello all,

I need to convert grades from numbers to letters using a +/- scale. Here is the scale I have to use.

A+ 97-100
A 93-96.99
A- 90-92.99

B+ 87-89.99
B 83-86.99
B- 80-82.99

C+ 77-79.99
C 70-76.99

D 65-69.99
E <65

Any help is appreciated!
 
Last edited:

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
Here is a formula that I came up with.

Code:
=CHOOSE(MATCH(A1,{0,65,70,77,80,83,87,90,93,97}),"E","D","C","C+","B-","B","B+","A-","A","A+")
 
Upvote 0
You could also use:

=LOOKUP(A1,{0,65,70,77,80,83,87,90,93,97;"E","D","C","C+","B-","B","B+","A-","A ","A+"})
 
Upvote 0
Or with the use of a simple table such as:

Excel 2013
AB
10E
265D
370C
477C+
580B-
683B
787B+
890A-
993A
1097A+
11
12
13
14
15grade89
16resultB+
absinthe
Cell Formulas
RangeFormula
B16=VLOOKUP(B15,A1:B10,2,TRUE)
 
Upvote 0

Forum statistics

Threads
1,215,011
Messages
6,122,677
Members
449,092
Latest member
tayo4dgacorbanget

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top