If Condition with TODAY() - Need to adjust count
Hello Experts,
I am writing the following formula
Start Date - 01/01/2024
Target Completion Date - 07/26/2024
=IF([Target Completion Date]@row > TODAY(), "On-Track", IF([Target Completion Date]@row < TODAY(), "Past Due Date", IF([Target Completion Date]@row = TODAY(), "Approaching Due Date")))
In the "Approaching Due Date" - I have the value as "=TODAY()".
However, I need to adjust today with 3 days early bugger. May be if TODAY value coming at 07/24/2026 in system, I should get the update and NOT exactly on the 07/26/2024
Answers
-
Try:
=IF([Target Completion Date]@row > TODAY(), "On-Track", IF(OR([Target Completion Date]@row = TODAY(), [Target Completion Date]@row >= TODAY(-3)), "Approaching Due Date", "Past Due"
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.3K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 85 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 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!