Specialized Averaging Needed

Dzp1_47

New Member
Joined
Mar 20, 2016
Messages
6
Hello,

I'm trying to average scores, but need to ignore/drop the lowest score for every six entries. But the catch is I have to ignore the lowest of each six groups of scores. So every six data entries triggers the ignoring/dropping of the lowest within that set and so on and so.

So after 18 entries, the average is reflected as the average of 15 scores, with the lowest of entry 1-6 dropped, 7-12 dropped and 13-18 dropped. Also, if the last data group doesn't have 6 entries yet, no low is dropped. I'm having a hard time doing this without a massive nested if statement. Hoping there is a better way! Can absolutely do this in multiple steps if it makes it easier.

Thanks for the help!

DZP
 

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.
Try:

AB
1Scores
2110.5625
32
43
54
65
76
87
98
109
1110
1211
1312
1413
1514
1615
1716
1817
1918
2019
21

<colgroup><col style="width: 25pxpx"><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet12

Array Formulas
CellFormula
B2{=(SUM(A2:A100)-IFERROR(SUM(SUBTOTAL(5,OFFSET(A2,(ROW(INDIRECT("1:"&INT(COUNTA(A2:A100)/6)))-1)*6,0,6))),0))/(COUNTA(A2:A100)-INT(COUNTA(A2:A100)/6))}

<thead>
</thead><tbody>
</tbody>
Entered with Ctrl+Shift+Enter. If entered correctly, Excel will surround with curly braces {}.
Note: Do not try and enter the {} manually yourself

<tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,215,106
Messages
6,123,124
Members
449,096
Latest member
provoking

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