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

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
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
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
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,215,043
Messages
6,122,822
Members
449,096
Latest member
Erald

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