Multiple AND
Comments
-
Right now you have your true statement as 1 (flag on) if three criteria are met: Scheduled Complete is before today, Document Added is unchecked, Complete is unchecked. As soon as one of those is not met (e.g. Document Added is checked) your formula returns false or 0.
It sounds like you want your true statement to return 0 (flag off) when three criteria are met (although I'm not sure if you want it to flag when Scheduled Complete is in the future or the past, so you may need to adjust the > to <).
=IF(AND([Scheduled Complete]@row > TODAY(), [Document Added]@row = 1, Complete@row = 1), 0, 1)
-
That worked.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.4K Get Help
- 447 Global Discussions
- 144 Industry Talk
- 479 Announcements
- 5.1K Ideas & Feature Requests
- 85 Brandfolder
- 151 Just for fun
- 72 Community Job Board
- 490 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 302 Events
- 36 Webinars
- 7.3K Forum Archives
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!