How to uncheck a row field if another field in the row is set to a specific value
What I have so far: The box gets checked (true, 1) when a target due date is within 60 days of today. My current formula is:
=IF([Target Due Date]3 - 60 < TODAY(), 1)
What I hope to achieve: Find a way to uncheck (false, 0) the same box when Status is set to Closed.
I just can't seem to come up with anything that works for the second half. I feel like my overall approach may be in question here. I am learning these formulas on the fly and your community has been valuable for other formulas, and I thank you for that!
Best Answer
-
Try this:
=IF(AND(Status@row <> "Closed", [Target Due Date]3 - 60 < TODAY()), 1)
Answers
-
Try this:
=IF(AND(Status@row <> "Closed", [Target Due Date]3 - 60 < TODAY()), 1)
-
Thanks Paul, that works!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.1K Get Help
- 448 Global Discussions
- 154 Industry Talk
- 503 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 156 Just for fun
- 80 Community Job Board
- 512 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 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!