Days in progress formula with multiple criteria
Hello,
is it possible to run a formula that gets me the following?
If the status is “Not started” or “in progress” then count the number of business days between “date presented” and today, and if the status is “complete” then Count the number of business days between “date presented” and “date completed”
Tags:
Comments
-
Here's one way to do it:
=IFERROR(NETWORKDAYS([Date Presented]@row, IF(OR(Status@row = "Not Started", Status@row = "In Progress"), TODAY(), IF(Status@row = "Complete", [Date Completed]@row, "status unknown"))), "date missing")
This will return "status unknown" if there are other Status values found and "date missing" if there is a needed date not found.
Craig
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.9K Get Help
- 410 Global Discussions
- 220 Industry Talk
- 458 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 136 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 298 Events
- 37 Webinars
- 7.3K Forum Archives
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!