Explore recipe: Comparing an agent's tickets to the rest of the agent's group

Return to top

5 Comments

  • Teki

    Hi.  The issue i have with this approach is that you will need to hard code each agent name.  Is there a way to use the same principle but compare any agent against the team he/she is in.  We have created a set of agent names as an attribute. (using the SET in the calculated attributes in a query.) 

    2
  • D.Fitz

    Is there any way to recreate this dynamically without the need to manually hardcode agents' names? Creating individual calculated metrics for a growing team of 50+ agents isn't viable so would be great if there was another way to pull this together

     

    0
  • Dane
    Zendesk Engineering
    Hi David,

    As it turns out, we don't have dynamic filters yet. All should be done manually. 
    0
  • Derrek Jennings

    Hello
    What would this look like if we wanted to compare solved cases per month over the last 12 months? And that would be the final solved, I do not want to double count solved instances.

    So I want to see

    Ticket Group X Solved cases (displaying monthly for the last 12 months)

    Team Member A Solved Cases (displaying monthly for the last 12 months)

    Thank you

     

    0
  • Giuseppe
    Zendesk Customer Care

    Hi Derrek,

    We can do this by modifying the Calculated Metric to only include the Solved tickets. As per the article Metrics and attributes for Zendesk Support, the formula for the Solved Ticket metric is:

    IF ([Ticket status - Unsorted] = "Solved" OR [Ticket status - Unsorted] = "Closed") THEN [Ticket ID] ENDIF

    We can add this to the above formula like this:

    1.) Create the metric for the agent:

    IF ([Assignee name]="Madison Davis" AND [Ticket group] = "Support") AND ([Ticket status - Unsorted] = "Solved" OR [Ticket status - Unsorted] = "Closed")THEN [Ticket ID] ENDIF

    2.) Create the metric for the group:

    IF ([Ticket group] = "Support") AND ([Ticket status - Unsorted] = "Solved" OR [Ticket status - Unsorted] = "Closed")THEN [Ticket ID] ENDIF

    You can then add these 2 to the Metrics. Then in the Rows, add Ticket Solved - Month attribute, which you can then filter to only show the the last 12 months.

    Thank you!

     

     

    0

Please sign in to leave a comment.

Powered by Zendesk