Golf Skins

SteveP29

New Member
Joined
Jul 1, 2007
Messages
28
Office Version
  1. 365
Platform
  1. Windows
Having solved my last skins query (thank you)
I now have this one.

I've adapted the spreadsheet I use to record stableford scores for the golf society I run.
4 of us are off to Spain next week and we're going to have a few rounds of skins, I'd like to be able to record these automatically without having to manually calculating scores.

For those of you not familiar with the skins format, each hole has a 'skin', to win the skin, a player must have the lowest unique net score for that hole between those playing.
If more than one player has the lowest unique score, then the skin is rolled over to the next hole and is worth 2 skins. This continues? until one player has the unique lowest score.
At the end of the round, the winner is the player with the most 'skins'

I have added some sample scores from the last time we played for greater detail and context.
What I want to do, is have a function/ formula that will calculate and display the results as they are in the green shaded cells on lines 34 and 35.
I've tried several formulas but always seem to come unstuck.

Thanks in advance for any advice

Skins.xlsx
ABCDEFGHIJKLMNOPQRSTU
4HOLE
5123456789101112131415161718TOTAL
6DATEMETRES2862521192794613251253384244601643143682813334351013365401
7YARDS3132761303055043551373704645031793434023073644761103675907
8PAR44345434553444453472
9S.I.121618210414861133517117159
10PLAYERHandicap
11DC365466675556454443590
12JD144476575674656546495
13SH255555666777555563497
14SP044455556666777744496
15
16Shots
17DC-15   1     1 1      3
18JD-17         1        1
19SH-16   1     1        2
20SP-18                  0
21
22Net Score
23DC65456675546354443587
24JD44476575664656546494
25SH55545666767555563495
26SP44455556666777744496
27
28Lowest Score444455555443544434
29No Of Times223122121111311323
30
31Won Y/NNNNYNNYNYYYYNYYNNN
32Skin111111111111111111
33
34WinnerSHSPDCDCJDDCDCDC
35Number Won43211121
Skins
Cell Formulas
RangeFormula
C6:T6C6=IF($G$1=$A$107,C101,IF($G$1=$A$108,C106,IF($G$1=$A$109,C111)))
U6:U8,U23:U26,U17:U20,U11:U14U6=SUM(C6:T6)
C7:T7C7=C6*1.09361
C8:T9C8=IF($G$1=$A$107,C102,IF($G$1=$A$108,C107,IF($G$1=$A$109,C112)))
A17:A20A17=A11
B17:B20B17=B11-18
C17:T20C17=INDEX($Y$5:$AQ$9,MATCH($B11,$Y$5:$Y$9),MATCH(C$9,$Y$5:$AQ$5))
C23:T26C23=C11-C17
A23:A26A23=A11
C28:T28C28=MIN(C23:C26)
C29:T29C29=COUNTIF(C23:C26,C28)
C31:T31C31=IF(C29=1, "Y","N")
Cells with Conditional Formatting
CellConditionCell FormatStop If True
C11:T14Cell Value=C$8-1textYES
C11:T14Cell Value=C$8textYES
C11:T14Cell Value=C$8+1textYES
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
How about
Fluff.xlsm
ABCDEFGHIJKLMNOPQRSTU
4HOLE
5123456789101112131415161718TOTAL
6DATEMETRES0000000000000000000
7YARDS0000000000000000000
8PAR0000000000000000000
9S.I.000000000000000000
10PLAYERHandicap
11DC365466675556454443590
12JD144476575674656546495
13SH255555666777555563497
14SP044455556666777744496
15
29No Of Times444444444444444444
30
31Won Y/NNNNNNNNNNNNNNNNNNN
32Skin111111111111111111
33
34Winner      SP DCDCJDDC DCDC   
35Number Won      7 2111 21   
Sheet6
Cell Formulas
RangeFormula
C6:T6C6=IF($G$1=$A$107,C99,IF($G$1=$A$108,C104,IF($G$1=$A$109,C109)))
U6:U8,U11:U14U6=SUM(C6:T6)
C7:T7C7=C6*1.09361
C8:T9C8=IF($G$1=$A$107,C100,IF($G$1=$A$108,C105,IF($G$1=$A$109,C110)))
C29:T29C29=COUNTIF(C23:C26,C28)
C31:T31C31=IF(C29=1, "Y","N")
C34:T34C34=LET(m,MIN(C11:C14),IF(COUNTIFS(C11:C14,m)=1,XLOOKUP(m,C11:C14,$A$11:$A$14),""))
C35:T35C35=IF(C34="","",C5-SUM($B35:B35))
 
Upvote 1
Solution
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,073
Messages
6,122,975
Members
449,095
Latest member
Mr Hughes

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