Business days since line created
I need to calculate workdays since date created if a line is NOT "completed". So if a line is still not completed, I want to know the aging date since line was created.
I have a formula to calculate ho many days have passed since a line was created if not completed, but I am lost trying to only pull workdays from the created date until today.
=IF(Status@row <> "Completed", TODAY() - [Created Date]@row, "")
I am receiving an error with the below formulas:
=IF([Status]<> "Completed", NETWORKDAY(TODAY() - [Created Date]))
=IF(Status@row <> "Completed", NETDAYS((today) - [Created Date]@row, ""))
Best Answer
-
I had to update it to NETWORKDAYS but then it worked. Thank you Ryan!
=IF(Status@row <> "Completed", NETWORKDAYS([Created Date]@row, TODAY()), "")
Answers
-
I don't think the Created Date system field really is a date field. Or a compatible date anyway.
You might consider running a date capture automation to fill in the Created Date and set the column type to date. It should work as expected.
-
@Samantha Gordon You were so close! try this...
=IF(Status@row <> "Completed", NETDAYS([Created Date]@row, TODAY()), "")
-
I had to update it to NETWORKDAYS but then it worked. Thank you Ryan!
=IF(Status@row <> "Completed", NETWORKDAYS([Created Date]@row, TODAY()), "")
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 140 Industry Talk
- 472 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 497 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!