Network Days Remaining Until Due Date
With this formula for the "Days Remaining Until Due Date," it should be "0" when the due date is today and it should be "-1" when it is only one day past the due date.
=IF(ISBLANK([Returned To]@row), NETWORKDAYS(TODAY(), [Date Due]@row), "Complete")
Can someone let me how to fix it or if there is an inherent error built into the Network Days countdown?
Thank you!
Answers
-
Did you try this?
=IF(ISBLANK([Returned To]@row), NETWORKDAYS(TODAY(-1), [Date Due]@row), "Complete")
-
Thank you, Mike! That did help with the -2 part (now it says -1 as it is supposed to) but it did not change the where it should be "0" when the due date is today. It still says 1 on the due date.
-
Try this then:
=IF([Due Date]@row=TODAY(), "0", IF(ISBLANK([Returned To]@row), NETWORKDAYS(TODAY(-1), [Date Due]@row), "Complete")
-
That does work for the day it is due, but it doesn't change the entire countdown. Example: It changes "1" to "0", but doesn't do anything for the changing the "2" to "1" etc.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64K Get Help
- 411 Global Discussions
- 220 Industry Talk
- 459 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 138 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 298 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!