If the first cell is empty and data is in the second and third no pass/fail is given.
=IF(AND(E14<=5,F14<=5,G14<=5),"",IF(AND(E14<=5,F14<=5,G14<=5),"Pass","Fail"))
Assuming that the values entered must be greater than 0, this does the same thing and is a few keystrokes shorter.YES! YES!! YES!!!
With the minor change it works!
I've been racking my brain on this stupid thing for 2 days!
THANKS SO MUCH! MAY you have a fantastic weekend!
=IF(AND(E14=0,F14=0,G14=0),"",IF(AND(E14<=5,F14<=5,G14<=5),"Pass","Fail"))
TBLO