Totaling grades and disregarding the lowest score

Mattantaliss

Board Regular
Joined
Sep 6, 2005
Messages
52
Hello,

I'm putting together a grade sheet for the upcoming semester, and in the past we have calculated homework totals by taking the twelve scores for the assignments and disregarding the lowest two (so we total the ten highest). As an example, if the twelve scores were stored in cells A1 to L1, I have calculated this before as:

=SUM(A1:L1)-SMALL(A1:L1,1)-SMALL(A1:L1,2)

Now the tricky part. This time around, each homework assignment will have two components, and so I have twenty-four cells storing each of the two component scores for each of the twelve assignments. Is there a slick way to total all of these scores up and then throw out the two lowest homework (paired-component total) scores?

Thanks,
Matt
 
Aladin Akyurek - If you consider the totals for each homework assignment (which each consist of a W component and an A component), you have

HW1 = W1 + A1 = 4
HW 2 = W2 + A2 = 3
HW3 = ... = 5
HW4 = 4

So 3 and 4 (one of them) are the two lowest scores, which leaves 5 + 4 = 9 for the total homework points.

Control+shift+enter, not just enter:
Rich (BB code):
=SUM(LARGE(IF(MOD(COLUMN($B$1:$H$1)-COLUMN($B$1),2)=0,B2:H2+C2:I2,""),
   ROW(INDIRECT("1:"&(COLUMNS($B$1:$I$1)/2)-2))))
 
Upvote 0

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off

Forum statistics

Threads
1,216,069
Messages
6,128,599
Members
449,460
Latest member
jgharbawi

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