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! Book time with me here: https://calendly.com/michelle-choate
-
@Robin H 77 Give something like this a try:
=NETWORKDAYS([Start Date]@row, IF([End Date]@row <> "", [End Date]@row, TODAY()))
-
Paul, thank you!!
Help Article Resources
Categories
Check out the Formula Handbook template!