I am trying to write a function that looks at a two cells and then gives the appropriate response. what I want it to look at is:
Grade System Condition Draft Pretension Payout Minimum FOS
ORQ chain intact survival 1.67
in the column under condition, I want it to look and if it says "intact" & if under "Minimum FOS" is less than 1.67 I want it to return a value of "FAIL" & if it is "damaged" & less than 1.25 I also want a response of "FAIL" any other case would be considered a "PASS." This is an easy function to write & it works for part of it.
If the value is intact & less than 1.67 I get "FAIL" for any other case I get "FALSE." I cannot find my error. Can anyone please help me. I have enclosed my function for review.
IF(G5=0," ",IF(C5="intact",IF(G5<1.67,"fail",IF(C5="damaged",IF(G5<1.25,"fail","pass")))))
Thanks.
Bookmarks