Adding pops to an Excel golf scorecard

69jjoseph69

New Member
Joined
Jun 29, 2022
Messages
6
Office Version
  1. 365
Platform
  1. MacOS
I have found a formula to use in an Excel golf scorecard worksheet here on Mr. Excel but it is a very old thread and is locked so I can't ask a question there. I have been using this formula for quite a few years now and its worked well until we had a gentleman join our golf group with a plus handicap. I need a formula that will work on both plus and minus handicaps. I've uploaded an example worksheet that I have been using and you will see that the formula that I have been using doesn't work for the golfer with a -4 handicap. Any help would be appreciated.


Example.xlsx
BCDEFGHIJKLMNOPQRSTUVWXYZAAABACADAE
1Sterling Grove Golf & CC Traveling Game Scorecard
2
3Hole123456789OutInitials101112131415161718InTotal
4White Tees67.3 / 114362272139511395243176391446293532747141712030334324817949729055840
5Handicap915117713351114188212641610
6Mark S.-4         MS         
7Kevin G.9* * * ** KG  ** **  
8Bob B.7  * * ** BB   * **  
9Norm J.11* * * ***NJ  ** ** *
10Par445343544364345445343672
11Skins
12Front NineBack NineTotal
13Mark S.
14Kevin G.
15Bob B.
16Norm J.
17
Sterling Grove Golf & CC
Cell Formulas
RangeFormula
O4,AB10,O10,AB4O4=SUM(F4:N4)
AD4,AD10AD4=O4+AB4
F6:N9,S6:AA9F6=REPT("*",SUMPRODUCT(--($D6>=F$5+{0,18,36})))
Q6:Q9Q6=LEFT(B6)&IF(ISNUMBER(FIND(" ",B6)),MID(B6,FIND(" ",B6)+1,1),"")&IF(ISNUMBER(FIND(" ",B6,FIND(" ",B6)+1)),MID(B6,FIND(" ",B6,FIND(" ",B6)+1)+1,1),"")
B13:B16B13=IF(B6<=0,"",B6)
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Hi & welcome to MrExcel.
What should the result be & why?
 
Upvote 0
If you look at the golfer with the -4 handicap there should be an asterisk on the 15, 16, 17 and 18th handicap holes. Why, because these are the easiest holes, therefore a negative handicap golfer adds a stroke on each one of these holes.
 
Upvote 0
there should be an asterisk on the 15, 16, 17 and 18th handicap holes
Is that in relation to the hole numbers on row 3 or the handicap numbers on row 5?

Please be aware that not everyone here plays golf, or understands what your handicaps represent. So a slightly better explanation would help rather than
because these are the easiest holes
 
Upvote 0
Can you have a -21 handicap & if so what should happen?
A clear explanation & reason would help.
 
Upvote 0
Even the best golfers in the world would never have a -21 handicap, but if one did, there would be two asterisks on the three easiest holes which would be the 16, 17 and 18th handicap holes.
 
Upvote 0
Ok, how about
Excel Formula:
=REPT("*",IF($D6<0,SUMPRODUCT(--($D6<=F$5-18)),SUMPRODUCT(--($D6>=F$5+{0,18,36}))))
 
Upvote 0
Solution
The formula you sent works great but for one exception. It adds one more than what is needed. In other words if I type -6 in cell D6 the formula will will put seven asterisks on the card in the appropriate places where it only should put six.
 
Upvote 0
Oops, it should be < rather than <=
 
Upvote 0

Forum statistics

Threads
1,215,529
Messages
6,125,343
Members
449,219
Latest member
Smiqer

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