Using "OR" in a formula
Hi there -
Trying to note that if a site has a Tier III Exterior OR if a different column titled EXTERIOR FRAME DESIGN says "Complete", a 0 is entered, otherwise it is 20. When I use the below formula, i just get a blank cell...
=IF([EXTERIOR SCOPE TIER]@row = "TIER III", OR([EXTERIOR FRAME DESIGN]@row = "Completed", 0, 20))
Answers
-
-
Hey @aecross
I agree that it would be helpful to see a screen capture!
In the meantime, the structure of an OR statement is like this:
=IF(OR(this = "", that = ""), true, false)
So in your case, try:
=IF(OR([EXTERIOR SCOPE TIER]@row = "TIER III", [EXTERIOR FRAME DESIGN]@row = "Completed"), 0, 20)
Cheers,
Genevieve
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!