T
taurus99
How do I get cell E to return PASS OR FAIL, if any the cells A1:AD equal TRUE?
A B C D E
TRUE FALSE TRUE FALSE FAIL
A B C D E
TRUE FALSE TRUE FALSE FAIL
How do I get cell E to return PASS OR FAIL, if any the cells A1:AD equal TRUE?
A B C D E
TRUE FALSE TRUE FALSE FAIL
Assuming AD should be read as D1 you may try this in cell E1:
=IF(AND(A11),"PASS","FAIL")
Hope this helps / Lars-Åke