Average lowest 5 of last 6 golf scores in a column

dgeorge

New Member
Joined
Oct 3, 2017
Messages
10
I'm having difficulty with the formula to find the lowest 5 of the last 6 golf scores listed in a column. The scores are auto-populated from another sheet so each cell with a score already has a formula in it. I will also have weeks when someone doesn't play so blank cells are common. My scores are entered in B7:B21, C7:C21, and so on. I'd like this formula to be in B27 but can put it elsewhere if necessary.

I created an example to test a formula found on the internet. In the example, scores are listed in a single row, A1:J1, with one cell blank and this formula works fine but trying to convert this to work in a single column has proven difficult. The -35.5 at the end is the average par on our course, front 9 is 36, back 9 is 35.
{=IF(COUNT(A1:J1)<6,B23,(SUM((J1:INDEX(A1:J1,LARGE(COLUMN(A1:J1)*(A1:J1<>""),6))))-LARGE((J1:INDEX(A1:J1,LARGE(COLUMN(A1:J1)*(A1:J1<>""),6))),1))/5)-35.5}

Is there any way to convert this formula to work in a column?

Any help would be greatly appreciated!
Thanks!
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Control+shift+enter, not just enter:

=AVERAGE(SMALL(IF(ROW(B7:B21)>=LARGE(IF(ISNUMBER(B7:B21),ROW(B7:B21)),MIN(6,COUNT(B7:B21))),IF(ISNUMBER(B7:B21),B7:B21)),ROW(1:5)))
 
Upvote 0

Forum statistics

Threads
1,222,689
Messages
6,167,648
Members
452,127
Latest member
jayneecm

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