Score grades

jmthanz

New Member
Joined
Aug 16, 2010
Messages
3
I don't know if there is already related threads regarding my post, i just want to ask for anyone's help on how to create grades range,

such as, grades 76 to 79 would be 2.75, 90 to 100 is 1
and all grades lower than 74.99 would be 5
and this is how it would appear
excel.jpg


thank you very much
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
You need to create a reference table with your ranges and rates e.g. (in cells F1:H8)

From To Rate
0 74.99 5.00
75 75.99 3.00
76 79.99 2.75
80 82.99 2.00
83 85.99 1.50
86 89.99 1.25
90 100 1.00

I have had to guess at the From/To so please adjust/enter further rows as required.

Then your formula would be (using John's rate as an example):

=VLOOKUP(B2,$F$1:$H$8,3,TRUE)

When testing this it returned the results you had except for Armand - I cannot see why the Rate would be 2.25, shouldn't it be 1.5
 
Upvote 0
thanks for the reply but i already figure out how,
its just the if function
ex.
=if(cell>=95,"1", if(cell>=90,"1.25", and so on,
i used to do the reverse from lowest grades to highest, it must be from the highest to lowest

any way thanks for the help
 
Upvote 0
jmthanz - your IF statement is quite OK. And creating a combination of them is called Nesting If Statements. There is a limitation to Nesting (usually 7 statements) and if you reach that you may have to try a different method so please keep my solution in mind.

cheers, Ian R.
 
Upvote 0

Forum statistics

Threads
1,213,489
Messages
6,113,954
Members
448,535
Latest member
alrossman

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