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
- Customer Resources
- 64.4K Get Help
- 424 Global Discussions
- 221 Industry Talk
- 465 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 144 Just for fun
- 61 Community Job Board
- 463 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!