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
- Customer Resources
- 64.8K Get Help
- 437 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 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!