Gradebook

CurlingGal

New Member
Joined
Sep 26, 2004
Messages
13
I have a gradebook I have written.

Assigments are designated as C, H, and T.

I want to determine averages by the assignment type.


C H T C C C H H H C T <----Type
20 15 100 20 20 20 15 15 25 20 100 <----- Max Value

16 15 88 20 15 16 10 15 22 20 93 <---- Student Score

The student has 4 'grade columns'; one for each type, one for total.
They are to read in percentages.

How do I get Excel to compile the Assignment Type grades?

I am keeping all data on one tab, for ease of use in my pda.
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
You could do something like this
Book1
ABCDEFGHIJKLM
1TypeCHTCCCHHHCT
2Max201510020202015152520100
3
4Score1615882015161015222093
5
6
7
8
9Average
10C87%
11H89%
12T91%
13Total89%
14
Sheet2


Formula in B10 copied down to B12

=SUMIF(B$1:L$1,A10,B$4:L$4)/SUMIF(B$1:L$1,A10,B$2:L$2)

Formula in B13

=SUM(B4:L4)/SUM(B2:L2)

all formatted as percentage
 
Upvote 0

Forum statistics

Threads
1,226,727
Messages
6,192,689
Members
453,747
Latest member
tylerhyatt04

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