I run a golf league and have created an extensive workbook that calculates the players handicaps on the scorecards. The problem I'm having is trying to add additional scorecards (adding rows) with out having to re-write the formulas for each cell.
example:
In row 18 the players handicap is located in column Y and the formula below will use the value in Y and compare it to the data in row 4 for each cell to determine if the player gets a stroke on that hole (it will add a dot if the player does)
This is the formula for the first hole:
=IF(Y18-B4>=18,"••",IF(Y18>=B4,"•",""))
This is the formula for the second hole:
=IF(Y18-C4>=18,"••",IF(Y18>=C4,"•",""))
As you can see, the first reference is for the players Handicap and the second is the handicap value of the hole to determine the dot placement.
The problem that I am having is this....
If I want to add additional players, I copy the formula down to the next line and I get this:
This is the formula for the first hole:
=IF(Y19-B5>=18,"••",IF(Y19>=B5,"•",""))
This is the formula for the second hole:
=IF(Y19-C5>=18,"••",IF(Y19>=C5,"•",""))
You can see that the formula change both of the values for the "target cells" however, the Y18 cell changed to Y19 which is what I wanted, but the secondary changed from B4 and C4 to B5 and C5 and I would like this to remain in the 4th row if possible.
Am I chasing a lost cause? Do I need to suck it up and just change them all? or is there a way to make this happen?
Thanks in advance for the good or bad news...
jbmesser
example:
In row 18 the players handicap is located in column Y and the formula below will use the value in Y and compare it to the data in row 4 for each cell to determine if the player gets a stroke on that hole (it will add a dot if the player does)
This is the formula for the first hole:
=IF(Y18-B4>=18,"••",IF(Y18>=B4,"•",""))
This is the formula for the second hole:
=IF(Y18-C4>=18,"••",IF(Y18>=C4,"•",""))
As you can see, the first reference is for the players Handicap and the second is the handicap value of the hole to determine the dot placement.
The problem that I am having is this....
If I want to add additional players, I copy the formula down to the next line and I get this:
This is the formula for the first hole:
=IF(Y19-B5>=18,"••",IF(Y19>=B5,"•",""))
This is the formula for the second hole:
=IF(Y19-C5>=18,"••",IF(Y19>=C5,"•",""))
You can see that the formula change both of the values for the "target cells" however, the Y18 cell changed to Y19 which is what I wanted, but the secondary changed from B4 and C4 to B5 and C5 and I would like this to remain in the 4th row if possible.
Am I chasing a lost cause? Do I need to suck it up and just change them all? or is there a way to make this happen?
Thanks in advance for the good or bad news...
jbmesser