Formula Help

Corkster

New Member
Joined
Nov 10, 2009
Messages
21
Office Version
  1. 365
Platform
  1. Windows
I am scoring a golf game where the best score on a hole gets 7, 2nd best gets 5, 3rd 3 and worst 1. If there are any ties they split the sum of those 2,3 or 4 places. For example if 2 tie the best they each get 6, if 2 tie the worst they each get 2, if 3 tie for the best they each get 5, if 2 tie the 2nd they each get 4, and so on. If all 4 tied each would get 4 points. Basically, 16 points per hole get allocated depending on results.

What formula will accomplish this?

This golfer sure appreciates your help.
 
Last edited:

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
I am scoring a golf game where the best score on a hole gets 7, 2nd best gets 5, 3rd 3 and worst 1. If there are any ties they split the sum of those 2,3 or 4 places. For example if 2 tie the best they each get 6, if 2 tie the worst they each get 2, if 3 tie for the best they each get 5, if 2 tie the 2nd they each get 4, and so on. If all 4 tied each would get 4 points. Basically, 16 points per hole get allocated depending on results.

What formula will accomplish this?

This golfer sure appreciates your help.
Try this...

Create this 2 column table of the point distribution:

Book1
GH
1RankPoints
217
325
433
541
Sheet1

Then, your scorecard might look something like this:

Book1
ABCD
1NameScoreRankPoints
2Bubba541
3Phil216
4Jim216
5Fred433
Sheet1

Enter this formula in C2 and copy down to C5 to get the score rank:

=RANK(B2,B$2:B$5,1)

Enter this formula in D2 and copy down to D5 to get the points:

=AVERAGE(OFFSET(H$2,MATCH(C2,G$2:G$5)-1,,COUNTIF(C$2:C$5,C2)))
 
Upvote 0

Forum statistics

Threads
1,224,599
Messages
6,179,831
Members
452,946
Latest member
JoseDavid

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