View previous topic :: View next topic |
Author |
Message |
pkang0202

Joined: 09 Mar 2007
|
Posted: Wed Apr 16, 2008 6:16 pm Post subject: Help with Excel Gradebook |
|
|
I have this gradebook, but I need help with the formulas.
____A_________B_______C_______D________E (Avg)
1 John ________7_______ ________12
2 Mike ________9 _______5________
3 Sally _______13_______11 _______15
4 Possible pts: 15 _______12_______15
So, here's the problem. I need a formula to calculate the average (E). However, I must ignore the blanks. The formula must also ignore the "Out of" if there is a blank.
For example: John was not there for Quiz 2 so his C column is blank. When I calculate his grade, have to pretend like Quiz 2 didn't exist for him. So John's average grade would be 19/30 = 63.
Whereas Mike didn't do Quiz 3. So his average will be 14/27= 52.
Can anyone help me with the formulation. The formulas I found don't account for varying possible points. I found formulas to ignore blanks but I don't know how to get it to ignore the blank AND ignore the points possible column to.
The logic would be:
if (cell = blank)
Average grades in row ignoring possible points of the column with blank cell |
|
Back to top |
|
 |
mehamrick

Joined: 28 Aug 2006 Location: South Korea
|
Posted: Wed Apr 16, 2008 6:44 pm Post subject: |
|
|
could you just not put a zero in there instead of leaving it blank?
I am curious about setting up something like this as well. Let me know how it goes. |
|
Back to top |
|
 |
mehamrick

Joined: 28 Aug 2006 Location: South Korea
|
|
Back to top |
|
 |
the foystein
Joined: 23 Apr 2007
|
Posted: Wed Apr 16, 2008 6:55 pm Post subject: |
|
|
Change the scores to a percentage - then the average is easy. |
|
Back to top |
|
 |
Fresh Prince

Joined: 05 Dec 2006 Location: The glorious nation of Korea
|
Posted: Wed Apr 16, 2008 7:00 pm Post subject: |
|
|
=AVERAGE(IF(A2:A7<>0, A2:A7,""))
This should average everything in the range unless the value is zero. |
|
Back to top |
|
 |
pkang0202

Joined: 09 Mar 2007
|
Posted: Wed Apr 16, 2008 7:06 pm Post subject: |
|
|
the foystein wrote: |
Change the scores to a percentage - then the average is easy. |
I wish I could, but the admins want to see each individuals # correct/ # possible points so that when the parents come in and complain the school can point to the grades and say, "Minsu scored this here, that there, etc...."
Korean parents can never admit their child doesn't study so you gotta show them hard proof to get through their thick heads. |
|
Back to top |
|
 |
the foystein
Joined: 23 Apr 2007
|
Posted: Wed Apr 16, 2008 7:28 pm Post subject: |
|
|
Ok, then there is an easy solution. Add a column next to the raw score and put in the formula to make the raw score a percentage. |
|
Back to top |
|
 |
Scouse Mouse
Joined: 07 Jan 2007 Location: Cloud #9
|
Posted: Wed Apr 16, 2008 8:05 pm Post subject: |
|
|
Easy solution 1: Put a column in there for total tests taken and then divide by that
Easy solution 2: Put a column next to each test and add a 1 if they take the test, or a 0 if they do not. Total these at the end and divide. |
|
Back to top |
|
 |
pkang0202

Joined: 09 Mar 2007
|
Posted: Wed Apr 16, 2008 10:02 pm Post subject: |
|
|
The problem I'm running into is doing the calculation for Row 4.
How can I tell the formula for Average in Column E to say, "Yo, John didn't take the 2nd test. So, in Row 4, don't calculate add the 12 to the total possible points"
And in the same formula, it's gotta say, "yo, Mike didn't take the 3rd test. So don't calculate add 15 to the total possible points"
I need a formula that says something like:
if (row, column) == blank, then subtract (4 , column) from Total Possible points. |
|
Back to top |
|
 |
mehamrick

Joined: 28 Aug 2006 Location: South Korea
|
Posted: Wed Apr 16, 2008 10:05 pm Post subject: |
|
|
pkang0202 wrote: |
The problem I'm running into is doing the calculation for Row 4.
How can I tell the formula for Average in Column E to say, "Yo, John didn't take the 2nd test. So, in Row 4, don't calculate add the 12 to the total possible points"
And in the same formula, it's gotta say, "yo, Mike didn't take the 3rd test. So don't calculate add 15 to the total possible points"
I need a formula that says something like:
if (row, column) == blank, then subtract (4 , column) from Total Possible points. |
Did you look at the link???? it gives you a lot of different ways you can do it.. or a quick google search will give you some more.. The link had lots of different formulas in there as well. |
|
Back to top |
|
 |
|