This metric calculates the average number of Solved Tickets per day.
Formula: # of Solved tickets / Working Time (converted) = Solved tickets per day
Important: For Working time we should first make a conversion depending on how much hours the agent worked in a day.
Example of conversion:
1) If working time is 0, then it should count as 0: Agent A has NO working time but has solved 2 tickets: 2/0 = 0 >> 0 solved tickets per day.
2) If working time is more than 0 and less than 5 hours then it should count as 0.5: Agent A has 3h Working time and 2 solved tickets: 2/0.5 = 4 >> 4 solved tickets per day.
3) If working time is more than 5 hours then it should count as 1: Agent A has 8h of Working time and 2 solved tickets: 2/1 = 2 >> 2 solved tickets per day.
If we want to calculate this metric for a selected period of time and see the totals, it will be calculated as an average.
Formula: SUM of all Tickets Solved per day (do not count 0 totals) / # of agents with solved tickets per day.