Flag Formula
Hello,
I am attempting to create a formula that if a presentation date = today and the status is either "Not started" or "In Progress" the flag will go off. I feel I am so close but keep getting an error.
=IF([Presentation Date]@row = TODAY(), Status@row = "Not Started", 0, OR([Presentation Date]@row = TODAY(), Status@row = "In Progress", 0))
Best Answer
-
I think you're missing some ANDS and ORS. Try this one. It will set the flag to 1 if the conditions are met and 0 if they are not.
=IF(OR(AND([Presentation Date]@row = TODAY(), Status@row = "Not Started"), AND([Presentation Date]@row = TODAY(), Status@row = "In Progress")), 1, 0)
Answers
-
I think you're missing some ANDS and ORS. Try this one. It will set the flag to 1 if the conditions are met and 0 if they are not.
=IF(OR(AND([Presentation Date]@row = TODAY(), Status@row = "Not Started"), AND([Presentation Date]@row = TODAY(), Status@row = "In Progress")), 1, 0)
-
Thank you so much David. Worked perfectly!!!
-
Awesome! Glad to hear it.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 142 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!