My dilemma is this. I am working on a sheet that will calculate a Handicap for each of our bowlers. It is a value, less their average, multiplied by a percentage. I have all that worked out (easily) and it is set.
Now, I need to limit the amount of handicap given as a MAX. For Men it is 50, for Women it is 55. In addition, the handicap needs to be a whole number, rounded down to the nearest whole number.
Here is what I have currently as a formula. It is calculating for a Women, and limits the amount of handicap to 55, and it is working, however, I need to only execute this if Column E is TRUE, or if Column E is FALSE or blank, to calculate based on 50.
Settings is my tab for the conditions that may change from tournament to tournament. Settings!$B$8 contains 55 for women, and Settings!$B$7 contains 50 for men.
=ROUNDDOWN(IF(((Settings!$B$4-LaneAssign!D2)*Settings!$B$5)>Settings!$B$8,Settings!$B$8,(Settings!$B$4-LaneAssign!D2)*Settings!$B$5),0)
Any help inserting the TRUE / FALSE check for column E would be greatly appreciated.... Everything I've tried so far just returns either an Error or FALSE in the formula.
Thanks!
Now, I need to limit the amount of handicap given as a MAX. For Men it is 50, for Women it is 55. In addition, the handicap needs to be a whole number, rounded down to the nearest whole number.
Here is what I have currently as a formula. It is calculating for a Women, and limits the amount of handicap to 55, and it is working, however, I need to only execute this if Column E is TRUE, or if Column E is FALSE or blank, to calculate based on 50.
Settings is my tab for the conditions that may change from tournament to tournament. Settings!$B$8 contains 55 for women, and Settings!$B$7 contains 50 for men.
=ROUNDDOWN(IF(((Settings!$B$4-LaneAssign!D2)*Settings!$B$5)>Settings!$B$8,Settings!$B$8,(Settings!$B$4-LaneAssign!D2)*Settings!$B$5),0)
Any help inserting the TRUE / FALSE check for column E would be greatly appreciated.... Everything I've tried so far just returns either an Error or FALSE in the formula.
Thanks!