How to Calculate Days Late Using Today’s Date When End Date is Missing?
Best Answers
-
How can I use this formula, or similar, if some of my rows do not yet have an end date, and the days late needs to be calculated based on today's date instead?
-
@Robin H 77 Give something like this a try:
=NETWORKDAYS([Start Date]@row, IF([End Date]@row <> "", [End Date]@row, TODAY()))
Answers
-
How can I use this formula, or similar, if some of my rows do not yet have an end date, and the days late needs to be calculated based on today's date instead?
-
[Days Late Column Formula] =IF(ISBLANK([End Date]@row), Today() - [Target End Date]@row,
Then the second part of the formula would be if it is not blank, then you want to calculate based off of the end date for days late?
IF([End Date]@row <>"", Today() - [End Date]@row,
Is this what you are thinking?
Michelle Choate
michelle.choate@outlook.com
Always happy to walk through any project you need help with!
-
@Robin H 77 Give something like this a try:
=NETWORKDAYS([Start Date]@row, IF([End Date]@row <> "", [End Date]@row, TODAY()))
-
Paul, thank you!!
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 142 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!