golf handicap

N

neo314trinity

Newbie alert, could anyone help with a formula for this: if b1=36 & b2=1 then
b4=b3-2 but if b1=3 & b2=4 then b4=b3
 
F

Fred Smith

To do what you've asked you would put this formula in B4:

=if(and(b1=36,b2=1),b3-2,if(and(b1=3,b2=4),b3,"?"))

I don't know what this has to do with golf handicaps though.
 
B

Biff

=if(and(b1=36,b2=1),b3-2,if(and(b1=3,b2=4),b3,"?"))
I don't know what this has to do with golf handicaps though.

My interpretation:

B1 is the players hdcp
B2 is the hole hdcp
B3 is the players gross score for that hole

Biff
 
Top