Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 577
Default Attn: Golfers! Need Help Calculating Hole-by-Hole Net Handicaps

This seems like it would be very easy, but apparently it's either not, or I'm
not thinking clearly.

Cells A2:A19 have the Hole # followed by the hole handicap (ranked 1 through
18, 1 being most difficult): So, in this example, let's say that the
following information is true for cells A2:A19:

1- HCP 11
2- HCP 17
3- HCP 3
4- HCP 1
5- HCP 13
6- HCP 7
7- HCP 5
8- HCP 15
9- HCP 9
10- HCP 4
11- HCP 18
12- HCP 2
13- HCP 10
14- HCP 16
15- HCP 8
16- HCP 14
17- HCP 6
18- HCP 12

Now, let's assume that our sample golfer has a 27 handicap, meaning he will
receive 1 shot on holes 1-18, and receive 1 shot on the HCP holes ranked 1-9.
So, in our example, he would receive 1 shot on #1, 1 shot on #2, 2 shots on
#3, 2 shots on #4, and so on...

What formula would I use to calculate the number of shots player would
receive on each hole? Any ideas?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,856
Default Attn: Golfers! Need Help Calculating Hole-by-Hole Net Handicaps

If you just had numbers in those cells and did away with the - HCP so
that you have this starting in A1:

Hole Handicap
1 11
2 17
3 3
4 1
5 13
6 7
7 5
8 15
9 9
10 4
11 18
12 2
13 10
14 16
15 8
16 14
17 6
18 12

then you could have this formula in C2:

=IF(B2<=9,2,1)

and copy this down to give you a series of 1 and 2 against each hole.

I'm not a golfer, so I don't know how the handicap system works, but
if someone had a handicap of 24 and this meant they got the extra shot
against the 6 hardest holes, then put your player's handicap in E1 and
change the formula in C2 to this:

=IF(B2<=E$1-18,2,1)

Hope this helps.

Pete



On May 4, 8:13*pm, Scott wrote:
This seems like it would be very easy, but apparently it's either not, or I'm
not thinking clearly. *

Cells A2:A19 have the Hole # followed by the hole handicap (ranked 1 through
18, 1 being most difficult): *So, in this example, let's say that the
following information is true for cells A2:A19:

1- *HCP 11
2- *HCP 17
3- *HCP 3
4- *HCP 1
5- *HCP 13
6- *HCP 7
7- *HCP 5
8- *HCP 15
9- *HCP 9
10- HCP 4
11- HCP 18
12- HCP 2
13- HCP 10
14- HCP 16
15- HCP 8
16- HCP 14
17- HCP 6
18- HCP 12

Now, let's assume that our sample golfer has a 27 handicap, meaning he will
receive 1 shot on holes 1-18, and receive 1 shot on the HCP holes ranked 1-9.
*So, in our example, he would receive 1 shot on #1, 1 shot on #2, 2 shots on
#3, 2 shots on #4, and so on...

What formula would I use to calculate the number of shots player would
receive on each hole? *Any ideas?


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,389
Default Golfers! Need Help Calculating Hole-by-Hole Net Handicaps

Golfer's handicap in A1, descriptions in a2:a19
=INT(A$1/18)+(MOD(A$1,18)=--RIGHT(A2,2))
Copy down

As an aside, I would put the hole numbers and their handicaps in separate
cells. They would be easier to work with.

Regards,
Fred.

"Scott" wrote in message
...
This seems like it would be very easy, but apparently it's either not, or
I'm
not thinking clearly.

Cells A2:A19 have the Hole # followed by the hole handicap (ranked 1
through
18, 1 being most difficult): So, in this example, let's say that the
following information is true for cells A2:A19:

1- HCP 11
2- HCP 17
3- HCP 3
4- HCP 1
5- HCP 13
6- HCP 7
7- HCP 5
8- HCP 15
9- HCP 9
10- HCP 4
11- HCP 18
12- HCP 2
13- HCP 10
14- HCP 16
15- HCP 8
16- HCP 14
17- HCP 6
18- HCP 12

Now, let's assume that our sample golfer has a 27 handicap, meaning he
will
receive 1 shot on holes 1-18, and receive 1 shot on the HCP holes ranked
1-9.
So, in our example, he would receive 1 shot on #1, 1 shot on #2, 2 shots
on
#3, 2 shots on #4, and so on...

What formula would I use to calculate the number of shots player would
receive on each hole? Any ideas?


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,389
Default Attn: Golfers! Need Help Calculating Hole-by-Hole Net Handicaps

Hi Pete,

You actually need the Mod and Int functions, because it's possible to get,
for example, 3 strokes on a hole if your handicap is over 36.

Golf and VBA have a lot in common -- equally difficult for a layman to
understand.

Regards,
Fred.

"Pete_UK" wrote in message
...
If you just had numbers in those cells and did away with the - HCP so
that you have this starting in A1:

Hole Handicap
1 11
2 17
3 3
4 1
5 13
6 7
7 5
8 15
9 9
10 4
11 18
12 2
13 10
14 16
15 8
16 14
17 6
18 12

then you could have this formula in C2:

=IF(B2<=9,2,1)

and copy this down to give you a series of 1 and 2 against each hole.

I'm not a golfer, so I don't know how the handicap system works, but
if someone had a handicap of 24 and this meant they got the extra shot
against the 6 hardest holes, then put your player's handicap in E1 and
change the formula in C2 to this:

=IF(B2<=E$1-18,2,1)

Hope this helps.

Pete



On May 4, 8:13 pm, Scott wrote:
This seems like it would be very easy, but apparently it's either not, or
I'm
not thinking clearly.

Cells A2:A19 have the Hole # followed by the hole handicap (ranked 1
through
18, 1 being most difficult): So, in this example, let's say that the
following information is true for cells A2:A19:

1- HCP 11
2- HCP 17
3- HCP 3
4- HCP 1
5- HCP 13
6- HCP 7
7- HCP 5
8- HCP 15
9- HCP 9
10- HCP 4
11- HCP 18
12- HCP 2
13- HCP 10
14- HCP 16
15- HCP 8
16- HCP 14
17- HCP 6
18- HCP 12

Now, let's assume that our sample golfer has a 27 handicap, meaning he
will
receive 1 shot on holes 1-18, and receive 1 shot on the HCP holes ranked
1-9.
So, in our example, he would receive 1 shot on #1, 1 shot on #2, 2 shots
on
#3, 2 shots on #4, and so on...

What formula would I use to calculate the number of shots player would
receive on each hole? Any ideas?


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 577
Default Golfers! Need Help Calculating Hole-by-Hole Net Handicaps

Thanks. However, this formula doesn't seem to work. It's producing a
"#VALUE!" error. This seems like this would be a simple calculation. Any
other ideas?

And by the way, yes, I have all of the hole #'s and handicaps in separate
cells, and without the "HCP." That was just a visual display for the
discussion boards.





"Fred Smith" wrote:

Golfer's handicap in A1, descriptions in a2:a19
=INT(A$1/18)+(MOD(A$1,18)=--RIGHT(A2,2))
Copy down

As an aside, I would put the hole numbers and their handicaps in separate
cells. They would be easier to work with.

Regards,
Fred.

"Scott" wrote in message
...
This seems like it would be very easy, but apparently it's either not, or
I'm
not thinking clearly.

Cells A2:A19 have the Hole # followed by the hole handicap (ranked 1
through
18, 1 being most difficult): So, in this example, let's say that the
following information is true for cells A2:A19:

1- HCP 11
2- HCP 17
3- HCP 3
4- HCP 1
5- HCP 13
6- HCP 7
7- HCP 5
8- HCP 15
9- HCP 9
10- HCP 4
11- HCP 18
12- HCP 2
13- HCP 10
14- HCP 16
15- HCP 8
16- HCP 14
17- HCP 6
18- HCP 12

Now, let's assume that our sample golfer has a 27 handicap, meaning he
will
receive 1 shot on holes 1-18, and receive 1 shot on the HCP holes ranked
1-9.
So, in our example, he would receive 1 shot on #1, 1 shot on #2, 2 shots
on
#3, 2 shots on #4, and so on...

What formula would I use to calculate the number of shots player would
receive on each hole? Any ideas?





  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 577
Default Golfers! Need Help Calculating Hole-by-Hole Net Handicaps

Never mind! Thanks, Fred. I think I got this one figured out.



"Fred Smith" wrote:

Golfer's handicap in A1, descriptions in a2:a19
=INT(A$1/18)+(MOD(A$1,18)=--RIGHT(A2,2))
Copy down

As an aside, I would put the hole numbers and their handicaps in separate
cells. They would be easier to work with.

Regards,
Fred.

"Scott" wrote in message
...
This seems like it would be very easy, but apparently it's either not, or
I'm
not thinking clearly.

Cells A2:A19 have the Hole # followed by the hole handicap (ranked 1
through
18, 1 being most difficult): So, in this example, let's say that the
following information is true for cells A2:A19:

1- HCP 11
2- HCP 17
3- HCP 3
4- HCP 1
5- HCP 13
6- HCP 7
7- HCP 5
8- HCP 15
9- HCP 9
10- HCP 4
11- HCP 18
12- HCP 2
13- HCP 10
14- HCP 16
15- HCP 8
16- HCP 14
17- HCP 6
18- HCP 12

Now, let's assume that our sample golfer has a 27 handicap, meaning he
will
receive 1 shot on holes 1-18, and receive 1 shot on the HCP holes ranked
1-9.
So, in our example, he would receive 1 shot on #1, 1 shot on #2, 2 shots
on
#3, 2 shots on #4, and so on...

What formula would I use to calculate the number of shots player would
receive on each hole? Any ideas?



  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 30
Default Attn: Golfers! Need Help Calculating Hole-by-Hole Net Handicaps

I'm assuming you're trying to calculate stableford scores?

If you Google "Stableford Checker Excel" you'll come up with something
to give you a few clues.

Ricky




Scott wrote:
This seems like it would be very easy, but apparently it's either not, or I'm
not thinking clearly.

Cells A2:A19 have the Hole # followed by the hole handicap (ranked 1 through
18, 1 being most difficult): So, in this example, let's say that the
following information is true for cells A2:A19:

1- HCP 11
2- HCP 17
3- HCP 3
4- HCP 1
5- HCP 13
6- HCP 7
7- HCP 5
8- HCP 15
9- HCP 9
10- HCP 4
11- HCP 18
12- HCP 2
13- HCP 10
14- HCP 16
15- HCP 8
16- HCP 14
17- HCP 6
18- HCP 12

Now, let's assume that our sample golfer has a 27 handicap, meaning he will
receive 1 shot on holes 1-18, and receive 1 shot on the HCP holes ranked 1-9.
So, in our example, he would receive 1 shot on #1, 1 shot on #2, 2 shots on
#3, 2 shots on #4, and so on...

What formula would I use to calculate the number of shots player would
receive on each hole? Any ideas?

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Formula to Randomly Pair Two Golfers Terry Excel Worksheet Functions 11 August 6th 07 02:34 AM
set printer to 3 hole punch in excel Liberty Excel Discussion (Misc queries) 7 September 18th 06 09:38 PM
Ranking of golfers Tommy Excel Discussion (Misc queries) 5 April 7th 06 06:29 PM
Golf Handicaps David Clark Excel Discussion (Misc queries) 3 September 12th 05 04:22 AM
calculate a hole Ron Excel Discussion (Misc queries) 2 August 25th 05 06:33 PM


All times are GMT +1. The time now is 06:19 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"