Count Networkdays to TODAY only when End Date not listed?
Hello,
How can I calculate networkdays to TODAY only when the end date is not populated? The following formulas work, but I can't figure out how to stop the counting of networkdays when the review end date is populated. I need to set some alerts when projects enter review and are not completed and the alerts are based on the number of days in the review period.
Thanks!
=NETWORKDAYS([SME Draft 1 Review Start Date]@row, TODAY(0), {Holidays})
=IFERROR(NETWORKDAYS([SME Draft 1 Review Start Date]@row, [SME Draft 1 Review End Date]@row, {Holidays}), "")
Answers
-
You would use an IF statement in the second portion of the NETWORKDAYS function to output the End Date if it is not blank or TODAY() if it is blank.
=NETWORKDAYS([SME Draft 1 Review Start Date]@row, IF([SME Draft 1 Review End Date]@row <> "", [SME Draft 1 Review End Date]@row, TODAY()), {Holidays})
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.1K Get Help
- 444 Global Discussions
- 142 Industry Talk
- 472 Announcements
- 5K Ideas & Feature Requests
- 83 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 489 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!