Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
LOU LOU is offline
external usenet poster
 
Posts: 40
Default Golf Formula Help

I am trying to write this in excel can someone help me with this. I have
tried the if and but no success.

The criteria are as follows.

Handicaps. 3 scores are used with the oldest score dropping
out when the new round is played. 90% of a gross handicap between 0 -
10 for the net; 85% of 11 - 20; 80% of 21 - 30 and lastly 75% of 31 -
40.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
DOR DOR is offline
external usenet poster
 
Posts: 11
Default Golf Formula Help

You need to describe your requirements a little better - are you trying
to calculate the total net score for the last three rounds, with the
net score for each round being calculated as the Gross score for that
round minus Adjusted Handicap, where Adjusted Handicap is 85% of actual
handicap for handicaps 0-10, 80% of actual for 11-20 and 75% of actual
for handicaps greater than 20?

Or are you trying to calculate new handicaps based on the last three
rounds, and, if so, could you explain your rules for calculating new
handicaps?

DOR


LOU wrote:
I am trying to write this in excel can someone help me with this. I have
tried the if and but no success.

The criteria are as follows.

Handicaps. 3 scores are used with the oldest score dropping
out when the new round is played. 90% of a gross handicap between 0 -
10 for the net; 85% of 11 - 20; 80% of 21 - 30 and lastly 75% of 31 -
40.


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,688
Default Golf Formula Help

Hi!

It's not clear what you want to do.

The first question I have is: what if there aren't 3 scores?

Suppose there are 3 scores: 75, 77, 70.

The player has a 2 hdcp.

Then what?

How about some examples.

Biff

"LOU" wrote in message
...
I am trying to write this in excel can someone help me with this. I have
tried the if and but no success.

The criteria are as follows.

Handicaps. 3 scores are used with the oldest score dropping
out when the new round is played. 90% of a gross handicap between 0 -
10 for the net; 85% of 11 - 20; 80% of 21 - 30 and lastly 75% of 31 -
40.



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
DOR DOR is offline
external usenet poster
 
Posts: 11
Default Golf Formula Help

This may work for you, if you are not interested in rounding each
handicap after the percentage is calculated:

Put your gross score in A2 and downwards - start with three scores in
A2, A3, A4. Put the full handicap that applied for each score beside
it in column B (I am assuming that a given player can have a different
handicap for each score as happens in the normal course of events).

Enter this formula in C4, as an array formula, that is, confirm it with
Shift-Control-Enter rather than just Enter:

=SUM(A2:A4)-SUM(B2:B4*(IF(B2:B4<=10,0.9,IF(B2:B4<=20,0.85,IF(B 2:B4<=30,0.8,0.75)))))

Drag this formula down as far as you have scores. That will give you a
running total for the last three scores.

If you want to round the handicaps before subtracting from the gross
score (as is normally done with adjusted handicaps), then use column C
to show the net score for each round, by putting this formula in C2 and
dragging down:

=A2-ROUND(IF(B2<=10,0.9,IF(B2<=20,0.85,IF(B2<=30,0.8,0 .75)))*B2,0)

Now create a running total starting in D4, using the formula:

=SUM(C2:C4), and copy down.

If you want to be fancy and and not use a running total or helper
columns, then let us know. This is the simple solution. I hope my
interpretation of the problem is correct.

Note that you could also store the break points and percentages as
variables, which would be preferable if you ever want to change them,
but note that if you set them up as simple variables and ever change
them, all the past history is subject to change also, unless you take
steps to freeze it in some way.

DOR

LOU wrote:
I am trying to write this in excel can someone help me with this. I have
tried the if and but no success.

The criteria are as follows.

Handicaps. 3 scores are used with the oldest score dropping
out when the new round is played. 90% of a gross handicap between 0 -
10 for the net; 85% of 11 - 20; 80% of 21 - 30 and lastly 75% of 31 -
40.


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
Locking portions of a formula tiggatattoo Excel Worksheet Functions 2 June 5th 06 04:51 PM
Golf Formula aussiemike Excel Worksheet Functions 2 May 22nd 06 01:43 PM
assign formula to another cell Dannycol Excel Worksheet Functions 3 May 12th 06 09:46 PM
Match then lookup Tenacity Excel Worksheet Functions 9 December 3rd 05 05:30 AM
Creating a check mark box MarthaSue Setting up and Configuration of Excel 18 April 28th 05 12:31 AM


All times are GMT +1. The time now is 07:04 PM.

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"