+ Reply to Thread
Results 1 to 4 of 4

Golf Scorecard issue

Hybrid View

o AXE Golf Scorecard issue 05-20-2010, 07:34 PM
daddylonglegs Re: Golf Scorecard issue 05-20-2010, 07:38 PM
o AXE Re: Golf Scorecard issue 05-20-2010, 07:52 PM
daddylonglegs Re: Golf Scorecard issue 05-21-2010, 08:43 AM
  1. #1
    Registered User
    Join Date
    06-13-2009
    Location
    CANADA
    MS-Off Ver
    Excel 2008 MAC
    Posts
    13

    Golf Scorecard issue

    Hi guys,

    I am making a very detailed scorecard for golf. The thing is that I can't seem to find out how to have the average number of strokes for a given par. So some kind of formula that will look at the holes and see the par 3's (for example) and be able to average the scores for all the holes with that par. I am pretty beginner and was thinking about a COUNTIF formula or something?

    I've uploaded a little sample of my scorecard for you to see what I'm trying to do. I hope it helps.

    Thanks!
    Attached Files Attached Files

  2. #2
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    Microsoft 365
    Posts
    14,695

    Re: Golf Scorecard issue

    You can either use an "array formula" like this

    =AVERAGE(IF(B1:J1=3,B2:J2))

    confirmed with CTRL+SHIFT+ENTER

    or this "regular" formula will give the same result

    =SUMIF(B1:J1,3,B2:J2)/COUNTIF(B1:J1,3)

  3. #3
    Registered User
    Join Date
    06-13-2009
    Location
    CANADA
    MS-Off Ver
    Excel 2008 MAC
    Posts
    13

    Re: Golf Scorecard issue

    Quote Originally Posted by daddylonglegs View Post
    You can either use an "array formula" like this

    =AVERAGE(IF(B1:J1=3,B2:J2))

    confirmed with CTRL+SHIFT+ENTER

    or this "regular" formula will give the same result

    =SUMIF(B1:J1,3,B2:J2)/COUNTIF(B1:J1,3)
    Thanks for the reply.

    I see that works and everything, but would I be able to highlight a lot of rows all at once (future golf scores) so that my average for "Par 3's" (for example) will be updated automatically?

  4. #4
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    Microsoft 365
    Posts
    14,695

    Re: Golf Scorecard issue

    You can amend the first version to do that for a block of rows, e.g. this version will average all par 3 scores for rows 2 to 10 (excluding any blanks)

    =AVERAGE(IF(B1:J1=3,IF(B2:J10<>"",B2:B10)))

    confirmed with CTRL+SHIFT+ENTER

    or do you want to average discrete rows?

+ 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