We have an intake sheet that we just updated to include a new field that will only have data input on a rare occasion. I need to figure out how to update my formula to take into account that input as we are measuring as a pass/fail system but I need it not to affect when it's empty.
Here's the current formula:
=IF(AND([Helper 1]@row = "0", [Helper 2]@row = "0", [Helper 3]@row = "0"), "Pass", IF(OR([Helper 1]@row = "1", [Helper 2]@row = "1", [Helper 3]@row = "1"), "Fail", ""))
Here's my partially updated version with the new field:
=IF(AND([Helper 1]@row = "0", [Helper 2]@row = "0", [Helper 3]@row = "0", [HR 1]@row = "0"), "Pass", IF(OR([Helper 1]@row = "1", [Helper 2]@row = "1", [Helper 3]@row = "1", [Hr 1]@row = "1"), "Fail", ""))
But I need to know what else to add so that if HR 1 or Helper 2 are empty, it doesn't affect the pass/fail outcome. I've tried a couple of additions like IFERROR or ISBLANK, but I don't think I was adding them correctly to get them to work right