Need to get a Running Average Total of Duration of Escalation Formula
I need to present in a widget a running average Number from Total of all Escalation, From In Progress to Resolved .
Answers
-
If you're looking to get an Average from the column titled "Duration of Escalation", the first thing you'll need to do is clear out any formula errors. If there's a formula error in one cell of the column, we won't be able to reference it in any other formula or it will produce the same error.
Try wrapping an IFERROR around whatever formula you have, like so:
=IFERROR(formula, ''")
This will ensure that the cell is blank instead of showing an error when one of your Date cells is blank.
The we can build a simple AVG formula in a summary field in this sheet, that you can use as a Metric Widget.
=AVG([Duration of Escalation]:[Duration of Escalation])
This will automatically exclude any blank cells.
However it looks like you want to show a Duration even if the task hasn't been completed yet, so there is no Resolved date. In this instance you can update the formula in your "Duration of Escalation" to include a duration that looks at the Start Date until TODAY().
You can either use the NETDAYS Function to find the total days between Today and the Start date:
IF([End Date]@row = "", NETDAYS([Start Date]@row, TODAY()), current formula)
Or you could use the NETWORKDAYS Function if you want to exclude non-working days:
IF([End Date]@row = "", NETWORKDAYS([Start Date]@row, TODAY()), current formula)
Let me know if this makes sense and works for you! If not, it would be helpful to know what your current formula is in that column.
Cheers,
Genevieve
Need more help? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao! 👋 | Global Discussions
-
Thank you for the Prompt response, and for the suggestion to eliminate the error, My management team want to have 1 average total of escalations from Open to close from all . Is that possible?
-
Do you mean COUNT of how many rows are in the sheet? (Which would be the number of escalations recorded in the sheet)
Need more help? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao! 👋 | Global Discussions
-
My apologies I'm doing a horrible job of explaining it:
If we have a total of 10 escalations and some were close in 1 day other in in 2 and some in 3 days, my manager is looking for a total average of the closing rate in days
-
Thank you for clarifying! So you are looking to Average the [Duration of Escalation], but only if the escalation is now "Closed"?
If you've added the IFERROR to your Duration formula, this should return a blank cell for any of the rows that do not have a "Resolved Date".
This means you should be able to simply Average the Duration of Escalation to find the Average for any row where there is a Resolved Date.
Did you try:
=AVG([Duration of Escalation]:[Duration of Escalation])
Need more help? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao! 👋 | Global Discussions
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.9K Get Help
- 410 Global Discussions
- 219 Industry Talk
- 457 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
Check out the Formula Handbook template!