Need to Calculate Average Letter Grade for Students in a class.

MasterT

New member
Joined
Sep 10, 2017
Messages
2
Reaction score
0
Points
0
So I've been given an assessment for my Yr. 11 Spreadsheets & Databases Course. I have been tasked with creating a spreadsheet for the Staff of my P.E. department, which is both easy to use and edit. I've been given a list of tasks, with marks corresponding with a letter grade. I only have the range for each grade. The data for each must be of my own making, but the marks per task are extremely different. So instead I planned on assigning each task with a letter (A,B,C,D, and E) and wanted to calculate what the student's overall letter grade was.


Beep TestVertical JumpIllinois Agility
Overall Grade (Letter)Raw ScoreGradeRaw ScoreGradeRaw ScoreGrade
What Formula should I use?12B10A52A
14A4C37C
10C12A27D
11B-5E34D
10C-2C52A
9D1E39C

I used the IF function to calculate the grade for each individual subject. I've been told my school is moving to Letter based grading, and won't be giving students a number anymore. Appears simple but I can't find any way of doing it. Relatively new to Excel.
 
How do you handle a mid-point grade? For instance, an A, and 2 C's is an average what? B, B+?
 
MasterT,

If you assign a values to the letters: A=5, B=4,C=3, etc.

Then you can use this formula: =CHAR(70-INT(((COUNTIF(A1:A11,"A")*5)+(COUNTIF(A1:A11,"B")*4)+(COUNTIF(A1:A11,"C")*3)+(COUNTIF(A1:A11,"D")*2)+COUNTIF(A1:A11,"E"))/COUNTA(A1:A11)))

Grades.PNG

Note that the formula is copyable across the row.

HTH :cool:
 
What are the grade boundaries?

Beep Test:
GradeYear 7Year 8Year 9Year 10
A10111213
B8.59.510.511
C7899.5
D66.57.58
E<6<6.5<7.5<8

Sit & Reach
GradeYear 7Year 8Year 9Year 10
A67810
B2346
C-5-5-4-3
D-7-6-5-4
E-9-8-6-5

Vertical Jump:
GradeYear 7Year 8Year 9Year 10
A40434650
B35384043
C29313335
D23242627
E17171919

Illinois Agility:
GradeYear 7Year 8Year 9Year 10
A15.715.715.115.1
B16.716.716.116.1
C17.617.617.117.1
D18.618.618.118.1
E191918.618.6

Sit Ups:
GradeYear 7Year 8Year 9Year 10
A50525456
B45474951
C40424446
D30323436
E25272931

Push Ups
RatingYear 7Year 8Year 9Year 10
A40424446
B30323537
C23253032
D16182527
E<16<18<25<27

Pull Ups:
RatingYear 7Year 8Year 9Year 10
A10121515
B57910
C3467
D1234
E0001

12 Min Run
RatingYear 7Year 8Year 9Year 10
A2200230024002500
B2000210022002300
C1800190020002100
D1600170018001900
E<1600<1700<1800<1900
 
Back
Top