Replace cell reference

Rock5150

Board Regular
Joined
Nov 16, 2012
Messages
91
Office Version
  1. 365
Platform
  1. Windows
Hello

I am using Mac Excel currently. I have a spreadsheet using golf scores. I would like my cell reference to point to a certain row only if a certain cell is listed as "F" for female as female (ladies) have a different handicap then the men. Since there are fewer ladies that play in our league, I figure a blank cell would note to use the common row and if the cell has an "F", then point to a different row

1712099296149.png


In the above, the person is a male, so the cell green is blank. In the sixth row with the A column named "Loveless, Albert Net", the formula, below, would point to row two (Handicap Men). The formula used in column B and out is as follows (the one below is Column B Hole 1). When the next column (C) is highlighted, the formula is (C$2), and so on ...(D$2, E$2, etc).

=B5-(B$2<=MOD($T6,18))-INT($T6/18)
=C5-(C$2<=MOD($T6,18))-INT($T6/18)

So if I put an "F" in the green cell above (T5), how can I change the B$2 to go to B$4, instead (row 4, Handicap (ladies).


I want to save time not putting "M" in the field for men as my formulas right now all point to row 2. If a female is playing in the tournament, I would manually change B$2 to B$4 cell by cell).

Thanks
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
Maybe this:

Excel Formula:
=B5-(IF(T5="M",B$2,B$4)<=MOD($T6,18))-INT($T6/18)
 
Upvote 0
Solution

Forum statistics

Threads
1,215,198
Messages
6,123,589
Members
449,109
Latest member
Sebas8956

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top