Getting 3 lowest golf scores - Help

duplinguy

Board Regular
Joined
Apr 25, 2002
Messages
95
I am keeping score for my company’s golf league. There are 6 teams with around 10 players on each team. Team scores need to be the AVERAGE of the 3 lowest scores per team (average of 36,37,38 for example below).
Player 1 = 36
Player 2 = 37
Player 3 = 38
Player 4 = 38

I use this formula to determine which scores to use: '=IF(C16="","",IF(RANK(C16,C14:C25,1)<4,"Use Me!","-")). I then use a SUMIF and COUNTIF to determine the average Team Score. I run into problems when 2 or more players have the same score. The RANK formula gives Player 3 and Player 4 the rank of 3 thus counting both their scores. Is there a way to average the 3 lowest scores, even if some or all are the same?

I know this sounds confusing, I will send my file to clear up any questions.
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
=AVERAGE(SMALL(C14:C25,{1,2,3}))
This message was edited by Mark W. on 2002-04-26 08:37
 
Upvote 0

Forum statistics

Threads
1,214,908
Messages
6,122,186
Members
449,071
Latest member
cdnMech

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