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!
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.1K Get Help
- 414 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 141 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!