+ Reply to Thread
Results 1 to 5 of 5

Golf handicap

  1. #1
    Registered User
    Join Date
    03-22-2012
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    6

    Golf handicap

    Hi

    I am trying to set up an excel sheet to work out handicaps automatically in the golf league I am running.

    I want it to do the following but I am struggling to get it to work and what formula to use:



    If score <= 68, handicapAdjust = (69-score * -0.7)

    Else if score >72 , handicapAdjust = 0.1

    Else handicapAdjust = 0



    Handicap = handicap + handicapAdjust

    Cheers

    Duncan

  2. #2
    Forum Expert Bob Phillips's Avatar
    Join Date
    09-03-2005
    Location
    Wessex
    MS-Off Ver
    Office 2003, 2010, 2013, 2016, 365
    Posts
    3,284

    Re: Golf handicap

    Try

    =IF(A2<=68,(69-A2)*-0.7,IF(A2>72,(A2-71)*0.1,0))

  3. #3
    Registered User
    Join Date
    03-22-2012
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    6

    Re: Golf handicap

    Brilliant mate, works a treat, thanks a lot I have been puzzling over this for weeks!

  4. #4
    Registered User
    Join Date
    03-22-2012
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    6

    Re: Golf handicap

    Hi

    Sorry just need a little adjustment, if its over 72 it only goes up 0.1 no matter how much over not up by 0.1 for each shot

  5. #5
    Forum Expert Bob Phillips's Avatar
    Join Date
    09-03-2005
    Location
    Wessex
    MS-Off Ver
    Office 2003, 2010, 2013, 2016, 365
    Posts
    3,284

    Re: Golf handicap

    Like this?

    =IF(A2<=68,(69-A2)*-0.7,IF(A2>72,0.1,0))

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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