How to Incorporate Average Speed of Answer (ASA) in Performance Analytics
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-31-2024 02:33 AM
Hi everyone,
I am currently working on creating a KPI dashboard for Management team, and one of the critical metrics we need to track is the Average Speed of Answer (ASA) for our analysts. The goal is to monitor the ASA per month, with the unit in minutes (target is less than 1 minute).
I would like to know if it’s possible to incorporate ASA into Performance Analytics in ServiceNow and what the best practices are for setting up the indicator or formula indicator for this purpose. Specifically, I am looking for guidance on:
1. Indicator Source: What would be the appropriate table (awa_work_item) and conditions to use for the indicator source?
2. Formula Indicator: If a formula indicator is necessary, what formula should be used to accurately calculate the ASA in minutes? Here’s an example formula I am considering:
var Items = [[Number of Accepted Interaction]];
if (Items > 0) {
[[Sum of Accepted Interaction Time]] / Items / 60000;
} else {
0;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-31-2024 03:18 AM
What is your definition of 'answer'? Depending on that, you could consider just using metrics.
Please mark any helpful or correct solutions as such. That helps others find their solutions.
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-31-2024 03:40 AM
By ‘answer’, I mean the moment when an analyst picks up a call or responds to a chat message. Specifically, it refers to the time elapsed from when the interaction (call/chat) is initiated by the customer until it is picked up or responded to by the analyst.