How can I set a column to automatically select Yes or No based on other column criteria
If Submitted SC Form is Yes and Completed Training is Completed and SC Mailbox Status is Active than I need Completed All 3 Actions to select Yes, otherwise No if any of the three criteria are not met.
Best Answer
-
@gail.smith Try this:
=IF(AND([Submitted SC Form]@row = "Yes", [Completed Training]@row = "Completed", [SC Mailbox Status]@row = "Active"), "Yes", "No")
Using AND like this allows you to enter multiple logical statements, separated by commas, which must ALL be true for the IF to select the true condition of "Yes". A common error with AND is that people forget the close off the AND statement with a parentheses before listing their true condition and false condition.
Alternatively, using OR in place of AND in the above formula would tell the IF that if ANY of the three logical statements is true, set the cell to "Yes".
Regards,
Jeff Reisman
Link: Smartsheet Functions Help Pages Link: Smartsheet Formula Error Messages
If my answer helped solve your issue, please mark it as accepted so that other users can find it later. Thanks!
Answers
-
@gail.smith Try this:
=IF(AND([Submitted SC Form]@row = "Yes", [Completed Training]@row = "Completed", [SC Mailbox Status]@row = "Active"), "Yes", "No")
Using AND like this allows you to enter multiple logical statements, separated by commas, which must ALL be true for the IF to select the true condition of "Yes". A common error with AND is that people forget the close off the AND statement with a parentheses before listing their true condition and false condition.
Alternatively, using OR in place of AND in the above formula would tell the IF that if ANY of the three logical statements is true, set the cell to "Yes".
Regards,
Jeff Reisman
Link: Smartsheet Functions Help Pages Link: Smartsheet Formula Error Messages
If my answer helped solve your issue, please mark it as accepted so that other users can find it later. Thanks!
-
Thank you so much @Jeff Reisman :)
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!