This is a very simple and (should be) straight-forward task - finding the a side of a triangle using the Pythagorean theorem.
I have 3 inputs and 3 outputs. You can input one of three sides: A, B, or C. Your output is based on what cell you leave blank of the three.
Let's say I put a value into the cell for side A and a value for side B. The resulting value should be side C. The issue comes up when I type something for side A and B, and it gives an output for all three values. I've only written the formula for side A so far, but here it is.
=IF(ISTEXT(B5),"",IF(OR(B6,B7)="","",SUM(SQRT(ABS(B7^2-B6^2)))))
By using ISTEXT, what I'm saying is if the cell for input of side A has text in it, leave the (formula) cell blank. So I type in a value for side A, but it still outputs a value even though it should stay blank. Is Excel's precedence flawed? Shouldn't the true value take precedence over the false value?
Thanks.
Bookmarks