How can I get Networkdays without an end date.
Hello, I'm working on a report that we know the start date, but we don't know when is gonna be the end date. we have KPIs and dashboards to keep our average days to solve the issues, but if we don't have a complete date, the average, reports, and dashboards get lost.
In Progress Issues, we don't have a completion date.
This is how I would like to keep the report.
I've tried IF, IFERROR, ISBLANK Function, but it doesn't work.
Answers
-
Hey @Sergy Reyes,
If you want it to calculate # of days from Start Date to Today if the Status is set to "In Progress", you could do something like this:
=IF(Status@row = "In Progress", NETWORKDAYS(Date@row, TODAY()), NETWORKDAYS(Date@row, [Completion Date]@row))
Or, if you want it to calculate based on if the Completion Date is blank or not, you could try this too:
=IF(ISBLANK([Completion Date]@row), NETWORKDAYS(Date@row, TODAY()), NETWORKDAYS(Date@row, [Completion Date]@row))
Hope this helps!
If my response was helpful in any way (or answered your question) please be sure to upvote it, mark it as awesome, or mark it as the accepted answer!
I'm always looking to connect with other industry professionals, feel free to connect with me on LinkedIn as well!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!