Golf Quota Point System Formula Help

Jonezy47

New Member
Joined
Mar 28, 2023
Messages
11
Platform
  1. MacOS
Good Afternoon,

I am in dire need of help. I am not to savvy with Excel. I have been struggling and seem to find no answers on how to convert someones score to par, to points in the row below. For example in quota point system, its a lot like Stableford, but ones handicap is subtracted from 36, and must obtain that many of points. For instance, if the hole is a par 5, in F11 I would enter someones score, and in F2 it would show there points earned according to par.

Eagle 8
Birdie 4
Par 2
Bogey 1
Double Bogey or worse 0

So if someone got a 6 on the hole it would show 1 in A4, and same for if someone got a 4 it would show a 4 in A4 all depending on what they scored. Hope this makes sense thank you
 

Attachments

  • Screen Shot 2023-03-28 at 4.40.02 PM.png
    Screen Shot 2023-03-28 at 4.40.02 PM.png
    35.4 KB · Views: 30

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
Hi & welcome to MrExcel.

I suggest that you update your Account details (or click your user name at the top right of the forum) so helpers always know what Excel version(s) & platform(s) you are using as the best solution often varies by version. (Don’t forget to scroll down & ‘Save’)

How about
Excel Formula:
=CHOOSE(MAX(F7-F11,-2)+3,0,1,2,4,8)
 
Upvote 0
THANK YOU!!! Appreciate that. I am not sure what version it is as it is the free version on microsoft online. Does that same formula work, no matter what the par of the hole is? For example if its a par 3 or par 4? Understandably i'll have to change every cell, when i go through each column to do it. Also is there a way to show a 0 in F12 instead of a #VALUE! Again thank you so much for your help
 
Upvote 0
I am not sure what version it is as it is the free version on microsoft online
That's 365 :)

If you are getting a #value error then one of the scores is more than 2 under par.
 
Upvote 0
Understood,
Except nothing is put in the cell for anything to be under par.
 

Attachments

  • Screen Shot 2023-03-28 at 5.28.39 PM.png
    Screen Shot 2023-03-28 at 5.28.39 PM.png
    50.8 KB · Views: 14
Upvote 0
Another alternative
row 13 uses the table for the Lookup
row 14 puts the points information in the formula

T202303a.xlsm
ABCDEFGH
1Golf points
2-998
3-14
402Hole123
511Yards345490170
620Handicap132
7Par553
8
9
10
11Scores561
13Points218
14Points218
5g
Cell Formulas
RangeFormula
F13:H13F13=LOOKUP(F11-F7,$B$2:$C$6)
F14:H14F14=LOOKUP(F11-F7,{-99,8;-1,4;0,2;1,1;2,0})
 
Upvote 0
Except nothing is put in the cell for anything to be under par.
You haven't put in how many strokes they took, hence the error.
How about

Fluff.xlsm
EFGH
1
2
3
4Hole123
5
6
7Par553
8
9
10
11Strokes3103
12Score802
Main
Cell Formulas
RangeFormula
F12:H12F12=IF(F11="","",SWITCH(F7-F11,-1,1,0,2,1,4,2,8,0))
 
Upvote 0
I’ll test that out! Makin dinner at moment. Dinner time here in UK! Really appreciate it! I will let u know how it works! Thanks again! I’m sure I’ll have a lot more questions!
 
Upvote 0
Yes, that worked as well. Didn’t show any error or anything just showed it as blank! Which works too! So I will have to go through every cell 18 cells horizontally for 18 holes and enter that code every time correct ?
 
Upvote 0

Forum statistics

Threads
1,215,046
Messages
6,122,855
Members
449,096
Latest member
Erald

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