Formula has to meet one criteria, other two criteria is optional

ss1992
✭✭
Hello,
I am stumped with a IF OR smartsheet formula:
I need a formula to tell me if Cell 1 = "Yes", and EITHER, Cell 2 and 3 = "Yes", then return "action" otherwise "no action:
So the criteria is cell 1 has to be yes. If it's no, it won't be considered.
Criteria for cell 2 & 3 is that either one of them could be yes
Example of what should happen:
Cell 1: Yes
Cell 2: No
Cell 3: Yes
Formula should return "action"
Best Answer
-
Hi @ss1992,
Try this
=IF(AND([1]@row = "Yes", OR([2]@row = "Yes", [3]@row = "Yes")), "action", "")
Hope that helps!
BRgds,
-Ray
Answers
-
Hi @ss1992,
Try this
=IF(AND([1]@row = "Yes", OR([2]@row = "Yes", [3]@row = "Yes")), "action", "")
Hope that helps!
BRgds,
-Ray
-
Thank you @Ray Lindstrom this worked!
Help Article Resources
Categories
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!