Drop lowest--wait! it's more complicated

andreamcn

New Member
Joined
Feb 5, 2015
Messages
2
This is for a gradebook...there are 10 homework assignments and I need a formula that will drop the lowest grade before finding the final proportion based on total points. Easy, right? But wait, the assignments are not all worth the same number of points. So I need to drop the lowest based on percent and then go back and calculate a grade based on total points. For example,

Joe181314
Total Pts211416

<tbody>
</tbody>

<tbody>
</tbody>

I need to calculate the proportion for each assignment (e.g. 18/21 = .86; 13/14 = .93; and 14/16 = .88), recognize that the low score is the 18, then calculate a final total points proportion without the low score (i.e. (13+14)/(14+16) = .90).

My first instinct was to break this into parts. First I set up a second table where each grade is converted to a percent. Then I can easily identify the lowest proportion. But now I need to use that cell as a reference to go back to the original table and drop that grade, and I don't know how to do that. Does this seem like the right approach and if so how do I figure that out?

Thanks!
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Assume your sample data starts in A1. Add a 3rd row for the % and enter this formula in B3 and copy across:
Code:
=B1/B2
Now this formula will give you the answer you want:
Code:
=SUM(B1:D1)-INDIRECT(ADDRESS(1,MATCH(MIN(B3:D3),B3:D3,0)+1))
 
Upvote 0
Here is a way that does not need the percentage calculation for every assignment for every student. On testing it I wonder if you have a policy for a student who achieves the same low score on 2 or more assignments.

Excel Workbook
ABCDEF
1Joe1813140.9000
2ann1712120.8286
3other2014130.9714
4problm cld18780.8571Two assignments scored 50% and both eliminated
5
6Total Pts211416
7
8PROOFING
9Joe0.8571430.9285710.8750.90
10ann0.8095240.8571430.750.83
11other0.95238110.81250.9714
12problm cld0.8571430.50.50.71
Sheet3
 
Last edited:
Upvote 0
Thank you!! I'll have to confer with my fellow instructors to decide how to deal with multiple low scores.
 
Upvote 0

Forum statistics

Threads
1,215,066
Messages
6,122,948
Members
449,095
Latest member
nmaske

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