Formula to Determine a Golf Skin

VinceF

Board Regular
Joined
Sep 22, 2007
Messages
186
Office Version
  1. 2016
Platform
  1. Windows
Having trouble, appreciate any assistance.

My dilemma is as follows... (if you're a golfer you'll have a better understanding of what I'm trying to accomplish)

With some prior assistance I was given a formula on how to determine a "skin" but going forward I now need to differentiate a "natural" skin from a skin obtained with a handicap. In our golf league a "birdie" for the hole using a stroke due to the players handicap does not supersede a natural birdie.

For example... Joe's handicap is 7 and the handicap for the par 4 hole is rated at 6 therefore Joe gets a stroke on this particular hole. Joe shoots a 4 on the hole and with his handicap he nets a 3. Meanwhile Sam who's handicap is a 4 also scored a 3 on the hole. Joe and Sam's net 3's would push the skin but do to our league rule Joe's net 3 was with a handicap while Sam's net 3 was a natural birdie therefore since Joe's birdie was with a handicap it doesn't supersede Sam's.

I will have cells populated indicating each players hdcp and the hole hdcp to reference in the formula.

Thanks for you assistance.

VinceF
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Building on JoeMo's CF formula, and assuming the score for the hole is in A, and the handicap for the hole is in C, try:

=AND(A1=MIN(A$1:A$20),OR(COUNTIF(A$1:A$20,A1)=1,AND(C1=MINIFS(C$1:C$20,A$1:A$20,A1),COUNTIFS(A$1:A$20,A1,C$1:C$20,MINIFS(C$1:C$20,A$1:A$20,A1))=1)))


If your version of Excel doesn't have MINIFS, try instead as a CF formula:

=AND(A1=MIN(A$1:A$20),OR(COUNTIF(A$1:A$20,A1)=1,AND(C1=MIN(IF(A$1:A$20=A1,C$1:C$20)),COUNTIFS(A$1:A$20,A1,C$1:C$20,MIN(IF(A$1:A$20=A1,C$1:C$20)))=1)))
 
Upvote 0

Forum statistics

Threads
1,223,230
Messages
6,170,883
Members
452,364
Latest member
springate

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