Within our SS solution we have a formula that starts a day counter from project status of "assigned" and stops counting when the project status is marked "complete". So if a project was assigned on the 5th day of a month and the project is marked complete on the 10th, it captures that the project was worked on for 5 days.
Our current formula for the Days in Progress counter is: =IF([Designer Project Status]@row = "Complete", [Date Approved]@row - [Date Assigned]@row, IF([Designer Project Status]@row = "Sent to Print", [Date at Printer]@row - [Date Assigned]@row, TODAY() - [Date Assigned]@row))
Is there a formula that would tell the day counter to pause if the status changes to "hold", and then resume counting from where it left off once the status changes back to "in progress"?