Welcome to the Smartsheet Forum Archives
The posts in this forum are no longer monitored for accuracy and their content may no longer be current. If there's a discussion here that interests you and you'd like to find (or create) a more current version, please Visit the Current Forums.
How do I use an OR function with a simple IF function?
I’m currently using this simple IF function (If Team Column equals “Undergraduate Robing”, check the box (formula below) but I need the box checked if the team column equals “Undergraduate Robing" or “Faculty Robing” or “Marshals”. Is this possible?
Current Formula: =IF(Team1 = "Undergraduate Robing", 1, 0)
Any assistance is greatly appreciated.
Serena
Comments
-
Serena,
something like this?
=IF(OR(Team1 = "Undergraduate Robing", Team1 = "Faculty Robing", Team1 = "Marshals"), 1, 0)
Adapted from the Smartsheet Help Center page about formulas :-)
Best regards
Stefan
-
It works perfectly. I wasted an hour searching and the answer was right under my nose. Thank you!
This discussion has been closed.