Hi, I am trying to put a formula together that will provide a fail if any part of the address or the phone number hasn't been provided. The below formula only provides fail if all cells are blank. I have tried other variations, this is the only one that does not give me some sort of error.
=IF(OR(NOT(ISBLANK([Street Address]@row)), NOT(ISBLANK(City@row)), NOT(ISBLANK(State@row)), NOT(ISBLANK([Zip Code]@row)), NOT(ISBLANK([Phone Number]@row))), "Pass", "Fail")