Golf handicap calculation

Marvo

Board Regular
Joined
Nov 27, 2023
Messages
158
Office Version
  1. 2021
Platform
  1. Windows
Hi. I'm trying to come up with a formula to work out golf handicaps on different courses. The English golf Union say this is how to do it.

Handicap Index® x (Slope Rating™ / 113) + (CR-PAR) = Course Handicap™ (Rounded)

So, how do you turn that into an excel formula?

As an example
The handicap index in A1 is 19.3.
The slope rating an A2 is 127
The CR in A3 is 68.8
Par in A4 is 69

The result in A5 should be 21

However if you change A1 to 19.4 then the result should be 22.

I can't get it to work.

Many thanks
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Looks like your answers are rounded.
Book1
A
119.3
2127
368.8
469
5
621.4911504
Sheet6
Cell Formulas
RangeFormula
A6A6=A1*(A2/113)+(A3-A4)
 
Upvote 0
Yes, they have to be. The problem is, in golf 16.4 = 16, 16.5 =17. However in the formula they give, that no longer applies. 19.3 = 21, 19.4 = 22. That's what I can't get my head round. Must be something to do with the multiply by 113.
 
Upvote 0
Yes, they have to be. The problem is, in golf 16.4 = 16, 16.5 =17. However in the formula they give, that no longer applies. 19.3 = 21, 19.4 = 22. That's what I can't get my head round. Must be something to do with the multiply by 113.
The typical rounding rule is if the decimal is 0.4 or under round down. If it's 0.5 or more round up.

Book2
A
119.4
2127
368.8
469
5
622
Sheet5
Cell Formulas
RangeFormula
A6A6=ROUND(A1*(A2/113)+(A3-A4),0)
 
Upvote 0
Solution
Having tested it on a few handicaps, that appears to be exactly what I need. Thank you.

The result becomes the source for two more calculations. At the moment both start with ROUND. Do I still need those or if I just copy the result would that be okay?
 
Upvote 0
Its okay, I've answered that myself by adding decimal points, they all produce .000000 so that's fantastic. Thank you very much
 
Upvote 0
You're welcome. I looked up their page. They say only the final answer is rounded. If they're used for another calculation, then it must be left un-rounded.

Screen Shot 2024-04-21 at 2.42.16 AM.png
 
Upvote 0
Its okay, the first result gives you the handicap on the course, from that you work out your score so the rounded figure is fine.

The English Golf Union App works it out for you, that's what I checked a few handicaps against to see if we'd got it right (we have). However I run a society with 50 members and I didn't want to have to look at 50 different handicaps every time we play another course.

Anyway, thanks very much, that all solved 3 or 4 problems.
 
Upvote 0

Forum statistics

Threads
1,215,429
Messages
6,124,840
Members
449,193
Latest member
MikeVol

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