Golf Two Man Low Net Score Game-Calculate Payout for top 3 teams including team ties

Golfhacker

New Member
Joined
Feb 2, 2024
Messages
3
Office Version
  1. 2021
Platform
  1. Windows
There are six 2man teams. Payout is $70 for team 1 ($35 each player), $50 for team 2($25 each player), and $30 for team 3 ($15 for each player). I rank the net score for each team, then assign the rank number for the two players on that team.
For example, Team 1 (John C and Rick D)score is 68 Team 4 (TimH and RickP) score is 69 and Team 6 (BillW and DaveF) score is 70. The four players on Team 1 and 2 would split $120 or $30 for each player.
Team 1 rank is 1; John C and Rick D rank is 1
Team 4 rank is 2; TimH and RickP rank is 2
Team 6 rank is 3; BillW and DaveF rank is 3

I'd like the Summary worksheet to look as follows:
Rank Score Payout
John C 1 68 35
Rick D 1 68 35
TimH 2 69 25
RickP 2 69 25
BillW 3 70 15
DaveF 3 70 15

Also. how do I deal with team ties for the payout and assign the correct payout for each player?
Thank you.
 

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.
Book1
ABCDEFGH
1PlayersTeam 1Team ScoreTeam RankTeam Prize
21Adam1Adam756 
32Bob4Donald 
43Charles
54DonaldTeam 2
65Eric3Charles692$25
76Fred7Greg$25
87Greg
98HughTeam 3
109Little Ricky5Eric631$35
1110James6Fred$35
1211Kevin
1312LeroyTeam 2
1410James714 
1512Leroy 
16
17Team 2
188Hugh692$25
1911Kevin$25
20
21Team 2
222Bob735 
239Little Ricky 
week 1
Cell Formulas
RangeFormula
E22:E23,E18:E19,E14:E15,E10:E11,E6:E7,E2:E3E2=VLOOKUP(D2,$A$2:$B$13,2)
G2,G22,G18,G14,G10,G6G2=RANK(F2,$F$2:$F$23,1)
H2,H22,H18,H14,H10,H6H2=IF(G2>3,"",IF(G2=3,"$15",IF(G2=2,"$25",IF(G2=1,"$35",""))))
H3,H23,H19,H15,H11,H7H3=IF(G2>3,"",IF(G2=3,"$15",IF(G2=2,"$25",IF(G2=1,"$35",""))))



Not sure if this is what you are looking for but if you rank the teams from 1 to 6 and have a tie, rank will set the values as 1,2,2,4,5,6 and the payout could simply be adjusted to pay both teams the extra $20 total since the difference would be 25 & 25 vs 25 & 15 (each player)

Additionally you may want to track each players winning totals over the season

HTH ~DR
 
Last edited:
Upvote 0
Book1
ABCDEFGH
1PlayersTeam 1Team ScoreTeam RankTeam Prize
21Adam1Adam756 
32Bob4Donald 
43Charles
54DonaldTeam 2
65Eric3Charles692$25
76Fred7Greg$25
87Greg
98HughTeam 3
109Little Ricky5Eric631$35
1110James6Fred$35
1211Kevin
1312LeroyTeam 2
1410James714 
1512Leroy 
16
17Team 2
188Hugh692$25
1911Kevin$25
20
21Team 2
222Bob735 
239Little Ricky 
week 1
Cell Formulas
RangeFormula
E22:E23,E18:E19,E14:E15,E10:E11,E6:E7,E2:E3E2=VLOOKUP(D2,$A$2:$B$13,2)
G2,G22,G18,G14,G10,G6G2=RANK(F2,$F$2:$F$23,1)
H2,H22,H18,H14,H10,H6H2=IF(G2>3,"",IF(G2=3,"$15",IF(G2=2,"$25",IF(G2=1,"$35",""))))
H3,H23,H19,H15,H11,H7H3=IF(G2>3,"",IF(G2=3,"$15",IF(G2=2,"$25",IF(G2=1,"$35",""))))



Not sure if this is what you are looking for but if you rank the teams from 1 to 6 and have a tie, rank will set the values as 1,2,2,4,5,6 and the payout could simply be adjusted to pay both teams the extra $20 total since the difference would be 25 & 25 vs 25 & 15 (each player)

Additionally you may want to track each players winning totals over the season

HTH ~DR
Thank you for the reply. I understand what you've provided. I was trying to automate the payout calculation with ties for the two-man game and I don't see an easy method. Using your formulas will be an option
 
Upvote 0
what would the new values be on a tie? if all three teams tie for first place do they all split 150 150/6
 
Upvote 0
golf.xlsx
ABCDEFGH
1PlayersTeam 1Team ScoreTeam RankTeam Prize
21Adam11Adam63225
32Bob24Donald
43Charles 
54Donald1Team 2
65Eric13Charles63225
76Fred17Greg
87Greg
98HughTeam 3
109Little Ricky5Eric644 
1110James6Fred
1211Kevin
1312LeroyTeam 2
1410James62170
15Total12Leroy
16
17Team 2
188Hugh696 
1911Kevin
20
21Team 2
222Bob685 
239Little Ricky
week 1
Cell Formulas
RangeFormula
G2,G22,G18,G14,G10,G6G2=RANK(F2,$F$2:$F$23,1)
H2,H22,H18,H14,H10,H6H2=IF(G2=1,(70/VLOOKUP(G2,$A$2:$C$7,3)),IF(G2=2,(50/VLOOKUP(G2,$A$2:$C$7,3)),IF(G2=3,(30/VLOOKUP(G2,$A$2:$C$7,3)),"")))
E22:E23,E18:E19,E14:E15,E10:E11,E6:E7,E2:E3E2=VLOOKUP(D2,$A$2:$B$13,2)
C2C2=COUNTIFS($G$2:$G$23,1)
C3C3=COUNTIFS($G$2:$G$23,2)
C4C4=COUNTIFS($G$2:$G$23,3)
C5C5=COUNTIFS($G$2:$G$23,4)
C6C6=COUNTIFS($G$2:$G$23,5)
C7C7=COUNTIFS($G$2:$G$23,6)




I added a helper cell in column C to count the number of "ties' and modified the formula


Maybe this can help or get you to where you are going.

Don
 
Upvote 0
golf.xlsx
ABCDEFGH
1PlayersTeam 1Team ScoreTeam RankTeam Prize
21Adam11Adam63225
32Bob24Donald
43Charles 
54Donald1Team 2
65Eric13Charles63225
76Fred17Greg
87Greg
98HughTeam 3
109Little Ricky5Eric644 
1110James6Fred
1211Kevin
1312LeroyTeam 2
1410James62170
15Total12Leroy
16
17Team 2
188Hugh696 
1911Kevin
20
21Team 2
222Bob685 
239Little Ricky
week 1
Cell Formulas
RangeFormula
G2,G22,G18,G14,G10,G6G2=RANK(F2,$F$2:$F$23,1)
H2,H22,H18,H14,H10,H6H2=IF(G2=1,(70/VLOOKUP(G2,$A$2:$C$7,3)),IF(G2=2,(50/VLOOKUP(G2,$A$2:$C$7,3)),IF(G2=3,(30/VLOOKUP(G2,$A$2:$C$7,3)),"")))
E22:E23,E18:E19,E14:E15,E10:E11,E6:E7,E2:E3E2=VLOOKUP(D2,$A$2:$B$13,2)
C2C2=COUNTIFS($G$2:$G$23,1)
C3C3=COUNTIFS($G$2:$G$23,2)
C4C4=COUNTIFS($G$2:$G$23,3)
C5C5=COUNTIFS($G$2:$G$23,4)
C6C6=COUNTIFS($G$2:$G$23,5)
C7C7=COUNTIFS($G$2:$G$23,6)




I added a helper cell in column C to count the number of "ties' and modified the formula


Maybe this can help or get you to where you are going.

Don
Thank you. I wasn't sure if I am allowed to upload my complete workbook. For a future golf outing, we are playing 18 hole individual low net, skins, plus a two-man low net game. With help from you and others online, all I have to do is enter each person's gross score for each hole and everything is calculated. I use helper rows and columns and some brute force formulas. I found a good method to deal with ties (for example: =AVERAGE(OFFSET($G$40,F6,0,COUNTIF($F$6:$F$17,F6)))) and distribute prize money accordingly.
 
Upvote 0

Forum statistics

Threads
1,215,071
Messages
6,122,964
Members
449,094
Latest member
Anshu121

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