I have two formulas I am trying to work out. For background information regarding the sheet, we have [Start] column capturing the date the enquiry came in and [Finish] column for the date the sale was completed. We also have another column [Expected Close Date] that is used to estimate when we expect the sale to be completed and this matches the [Finish] date column when the row (enquiry) is archived to another sheet. Sometimes the [Expected Close Date] column is blank. We have an [Inactive Count] column using this formula:
=IF(Finish@row = "", "", NETWORKDAY(Finish@row, TODAY()))
I want to adapt this formula to stop the [Inactive Count] column from continuing to count the days when the Sales Stage is complete. The trigger for this is when the [Sales Stage] column is changed to any of the following allocations:
[4 - Closed Won]
[5 - Closed Lost]
[6 - Closed No Bid]
If the enquiry is reopened, I need it to continue counting as before until closed again.
The second formula I need is to track the amount of days between the sales stage Quote to outcome, i.e. closed. We are interested in knowing how long it takes for us to finalise each sale from Quote to Closed. I can then tweak the formula to track other stages if needed. This could be done in a column in the Pipeline or in a metrics sheet, whichever works best.
[2 - Quote / Proposal]
[3 - Pending Outcome]
[4 - Closed Won]
[5 - Closed Lost]
[6 - Closed No Bid]
Appreciate your help with this.