If Multiple Cells Are NOT Blank, Fill with "Pass" or "Fail"

Hi there,
Trying to make a formula under my Pass/Fail column that results in a "Pass" if particular cells are blank but "Fail" if not. This is for quality control.
So... this isn't working and I have tried numerous variations that work up until a certain point.
=IF(OR(NOTBLANK([Complete - Critical Errors]@row, [Untimely - Critical Errors]@row, [Inaccurate - Critical Errors]@row, "Pass", "Fail")
Thank you in advance.
Answers
-
Hello @ElizabethOwen,
You have to break "NOT" and "ISBLANK" into 2 separate functions. Try this:
=IF(OR(NOT(ISBLANK([Complete - Critical Errors]@row)), NOT(ISBLANK([Untimely - Critical Errors]@row)), NOT(ISBLANK([Inaccurate - Critical Errors]@row))), "Pass", "Fail")
If my comment helped you, please help others by marking it as an accepted answer and consider helping me by clicking the π‘Insightful or β€οΈAwesome buttons below!
Monique Odom-Stearn
Pronouns: She/Her (Whatβs this?)
βTake chances, make mistakes, get messy!β β Ms. Frizzle -
Thank you!!!
Help Article Resources
Categories
Check out the Formula Handbook template!