+ Reply to Thread
Results 1 to 8 of 8

Golf Handicap Calculator

  1. #1
    Registered User
    Join Date
    06-06-2014
    Posts
    1

    Golf Handicap Calculator

    I had a few questions about making an excel sheet to calculate a golf handicap for my personal use. I searched everywhere but couldn't find what I am looking for.

    Currently I have 6 columns:
    A - Date
    B - Course
    C - Score
    D - Slope
    E - Rating
    F - Differential

    I enter all the information for A-E and then F calculates accordingly. I have all the formulas in and it works fine, but when I add a new score I have to sort the cells and then change a range in the formula to calculate the handicap. Basically I'm looking for a way to find the 20 most recent dates and then using those 20 most recent dates find the 10 best differentials. Any suggestions? Thanks in advance!

  2. #2
    Forum Contributor
    Join Date
    03-12-2013
    Location
    Chicago, USA
    MS-Off Ver
    Excel 2007
    Posts
    230

    Re: Golf Handicap Calculator

    We can't really see the issue unless you upload a sample workbook.

    As a suggestion, if the range in the formula that you constantly need to change is because you need to add an additional row to it (for example, you need to change A1:A20 to A1:A21 because you added an additional row of data in row 21), you can reference the entire column instead of just the range (Example: Instead of referencing A1:A20, reference A:A). Or instead of hardcoding row 20, you could reference a count of how many cells in the column actually contain data.

  3. #3
    Registered User
    Join Date
    05-22-2014
    Posts
    16

    Re: Golf Handicap Calculator

    From the author’s statement he is treated more leniently than we in Australia! He has 10 best rounds to calculate against our 8.

    Irregardless, I’m assuming that all calculations for a day derive a “played to” handicap for the particular Course in question.

    My procedure would be to list my last 20 rounds from newest to last.
    My macro would then:
    1. insert a row/cells at the top of the list to which:
    2. the new day’s data would be added.

    The 20th set of data has been moved down to 21.
    3. Since we don’t need that we select all data within the array of 20 results and sort downwards on the “played to” handicap.
    4. In a cell to the side SUM the top 10 “played to” handicaps and then divide by 10
    5. Um? Obviously there is need to convert that value to an “absolute” handicap for use at another course where slope will be applied as needed. Record that in a different cell (could be in the table).
    6. Reset the sheet to read the new round and the last 19; sort on the date column.
    7. remove Row 21, is obsolete and therefore untidy.
    8. Close the macro.

    If that doesn’t make sense then definitely post a Workbook/sheet.

  4. #4
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: Golf Handicap Calculator

    And what do you want to do with the 10 best differentials? "Best" means lowest, right? Do you want an average?

    Are you following USGA guidelines? What should happen if you don't have 20 scores? The USGA guidelines, if strictly followed, are very confusing/complex.
    Biff
    Microsoft MVP Excel
    Keep It Simple Stupid

    Let's Go Pens. We Want The Cup.

  5. #5
    Forum Expert
    Join Date
    01-23-2013
    Location
    USA
    MS-Off Ver
    Microsoft 365 aka Office 365
    Posts
    3,863

    Re: Golf Handicap Calculator

    Hi twig,

    Attached is a copy of the spreadsheet I used, until I stopped keeping score last year. The alternative to not keeping score was teaching my clubs to swim.

    My calculations track with USGA handicap calculations with the exception that my calculations are occasionally awry by 0.1 due to rounding errors on my part. The latest handicap is in Cell L356. The running values in column 'M' were entered manually based on the numbers in Cell L356.

    I hope this helps. If you have any questions about the spreadsheet or the math, please ask.

    Lewis
    Attached Files Attached Files

  6. #6
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: Golf Handicap Calculator

    Here's an example of getting the average of the lowest 10 scores from the last 20 scores. Due to space limitations I'm only including 20 rows worth of data in the example.

    Data Range
    A
    B
    C
    D
    1
    Date
    Score
    ------
    Average
    2
    4/25/2014
    73
    73.7
    3
    4/26/2014
    76
    4
    4/27/2014
    83
    5
    4/28/2014
    84
    6
    4/29/2014
    84
    7
    4/30/2014
    71
    8
    5/1/2014
    72
    9
    5/2/2014
    77
    10
    5/3/2014
    71
    11
    5/4/2014
    85
    12
    5/5/2014
    79
    13
    5/6/2014
    84
    14
    5/7/2014
    75
    15
    5/8/2014
    78
    16
    5/9/2014
    80
    17
    5/10/2014
    77
    18
    5/11/2014
    70
    19
    5/12/2014
    82
    20
    5/13/2014
    81
    21
    5/14/2014
    75


    This array formula** entered in D2:

    =AVERAGE(SMALL(B30:INDEX(B2:B30,LARGE(IF(B2:B30<>"",ROW(B2:B30)-ROW(B2)+1),20)),{1,2,3,4,5,6,7,8,9,10}))

    ** array formulas need to be entered using the key
    combination of CTRL,SHIFT,ENTER (not just ENTER).
    Hold down both the CTRL key and the SHIFT key
    then hit ENTER.

    You need to tell us what should happen if/when you have less than 20 scores to calculate.

  7. #7
    Forum Expert
    Join Date
    01-23-2013
    Location
    USA
    MS-Off Ver
    Microsoft 365 aka Office 365
    Posts
    3,863

    Re: Golf Handicap Calculator

    US Golf handicaps use the latest 20 scores. If less than 20 scores are available, the following number of scores are used (5 rounds minimum):
    Rounds|Number of scores to use
    05-06---1
    07-08---2
    09-10---3
    11-12---4
    13-14---5
    15-16---6
    17-17---7
    18-18---8
    19-19---9
    20-20--10

    Lewis

  8. #8
    Registered User
    Join Date
    07-03-2019
    Location
    Atlanta
    MS-Off Ver
    1905
    Posts
    1

    Re: Golf Handicap Calculator

    This calculation seems sweet and simple and appears to work well:
    =AVERAGE(SMALL(F6:F25,{1;2;3;4;5;6;7;8;9;10}))*0.96
    Courtesy of: thejuniorgolfer.com/golf-handicaps-for-kids

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Working on a customized Golf Handicap Calculator
    By aspiringexcelwizard in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 06-03-2012, 09:04 AM
  2. For a Golf Handicap
    By dmoore702 in forum Excel General
    Replies: 2
    Last Post: 03-03-2011, 07:56 AM
  3. how do i create a golf handicap calculator template
    By Martin Mosley in forum Excel General
    Replies: 1
    Last Post: 03-20-2006, 09:14 AM
  4. [SOLVED] Can I create a golf handicap calculator
    By Doug B in forum Excel General
    Replies: 1
    Last Post: 01-12-2006, 06:00 PM
  5. golf handicap
    By Phineus in forum Excel General
    Replies: 4
    Last Post: 07-03-2005, 11:05 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1