Golf comp calculation needed for handicaps - average and median formulas I think

shaneb

Board Regular
Joined
Mar 5, 2007
Messages
52
Hi All
I'm trying to find a formula that will calculate the following:
Out of 9 scores I want the formula to select the median 5 scores and then calculate the average of those 5 selected scores.
For example: scores of 58, 41, 29, 45, 33, 46, 42, 36, 37
I want the formula to select the 5 median scores - 36, 37, 41, 42, 45
And then calculate the average of those 5 scores.
I'm having trouble how I can select the 5 middle scores.
Any help would be appreciated
Cheers
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".

AndyPandy27

Board Regular
Joined
Jul 17, 2012
Messages
141
Hi shaneb,

Assuming your 9 scores are in A1:A9, use the array formula:

=SUM(LARGE(A1:A9,{3,4,5,6,7}))/5

Make sure to enter this using CTRL+SHIFT+ENTER.
 
Upvote 0

shaneb

Board Regular
Joined
Mar 5, 2007
Messages
52
Thanks AndyPandy27. I think that has given me what I am after. Can you just tell me what the "LARGE" function does?
Cheers
Shane
 
Upvote 0

AndyPandy27

Board Regular
Joined
Jul 17, 2012
Messages
141
Hi shaneb,

Absolutely - the Large function returns the k-th largest number in a data set.

The formula syntax is =Large(array,k)

Where array is the list of values you're choosing, and k is an integer which refers to which largest number you want to return; e.g. if k = 5, then the formula would return the 5th largest number in the array you specified.
 
Upvote 0

Forum statistics

Threads
1,195,650
Messages
6,010,920
Members
441,572
Latest member
keobongda8812

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
Top