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
- Smartsheet Customer Resources
- 64.3K Get Help
- 423 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 143 Just for fun
- 59 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 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!