Marks Range Grade
90+ A+
80 TO 89 B
70 TO 79 C
60 TO 69 D
50 TO 59 E
40 TO 49 F
I want that when I put marks in Marks Columns i.e. C, Grade will be appear
automatically as per above mention range.
Please send me formula to apply. Looking forward for prompt and favorable
response.
Thanks and Regards
Hina
"Need Formula for Mark Sheet" <Need Formula for Mark
Sh...@discussions.microsoft.com> wrote in message
news:D12AF91C-0306-457D...@microsoft.com...
Somewhere out of the way build a table that looks like this. In my case it's
in H1 - I7 and note it must remain sorted in the left column
0 F
59 E
69 D
79 C
89 B
90 A+
Then use this formula in D2 to get the grade. Drag down for all grades
=VLOOKUP(C2,$H$1:$I$6,2,TRUE)
Mike
I agree VLOOKUP; however, the lookup table should be set as follows:
Mark Grade
0 Not Graded
40 F
50 E
60 D
70 C
80 B
90 A+
Headers are optional
Alternatively if you want to use a formula the following one can be
placed in D2 and copied down.
=IF(C2>=90,"A
+",IF(C2>=80,"B",IF(C2>=70,"C",IF(C2>=60,"D",IF(C2>=50,"E",IF(C2>=40,"F","Not
Graded"))))))
Cheers
=LOOKUP(C2,{40,50,60,70,80,90},{"F","E","D","C","B","A+"})
"Need Formula for Mark Sheet" wrote:
Many thanks for below formula !!! It's working ..
=IF(C2>=90,"A+",IF(C2>=80,"B",IF(C2>=70,"C",IF(C2>=60,"D",IF(C2>=50,"E",IF(C2>=40,"F","Not Graded"))))))
But I found some problem in Grading in Vlookup formula ... explain below:
SL. # Subject Marks Grade
1 AA 91 A+
2 AB 79 C
3 AC 81 C it should be "B" as per range
4 AD 70 D it should be "C" as per range
5 AE 50 F it should be "E" as per range
Range of Grade
40-49 F
50-59 E
60-69 D
70-79 C
80-89 B
90-99 A+
Looking forward for your favorable response.
Regards
Hina
I put your given formula but I found some problem in Grading ... explain
below:
Result after putting Formula in Column "D"
A B C D E
SL. # Subject Marks Grade
1 AA 91 A+
2 AB 79 C
3 AC 81 C it should be "B" as per range
4 AD 70 D it should be "C" as per range
5 AE 50 F it should be "E" as per range
coulumn----> H I
Range of Grade
0 F
59 E
69 D
79 C
89 B
90 A+
I need Grade as per below mention chart:
Range of Grade
40-49 F
50-59 E
60-69 D
70-79 C
80-89 B
90-99 A+
Looking forward for your favorable response.
Regards
Hina
Many Thanks for reply and below mention formula.... It's working....
Thanks and Regards
Hina