Recent searches
No recent searches
Calculating bonus per solved tickets
Answered
Posted Jan 11, 2021
Hi,
I want to set a bonus system based on the agent's performance. I will some amount of money per range of solved tickets per month.
For example, the agent solved 40-50 tickets/month, so he/she should get $100, if 60-70 then $200 and so on. Is there a receipt to calculate such kind of condition?
Thank you in advance!
1
2
2 comments
Stephen Belleau
Stylemix Support - This looks straightforward enough but I ran into a weird issue when trying to create it. Explore formulas don't seem to like the $ symbol even when it's within quotes.
If you create the below as a custom metric:
IF(
D_COUNT(Solved tickets) < 40
) THEN "0"
ELIF (D_COUNT(Solved tickets) >= 40 AND D_COUNT(Solved tickets) < 50)
THEN "100"
ELIF (D_COUNT(Solved tickets) >= 50 )
THEN "200"
ENDIF
This should work. But if you say THEN "$100" / THEN "$200" it seems to break. Not sure what's going on there.
Aside from that, a couple things to keep in mind:
- you'll probably want to filter on status = closed to ensure a solved ticket that reopens doesn't get re-counted the following month
- If you're using Ticket Assignee as the row attribute, are you confident that the ticket Assignee is always the agent responsible for solving the ticket? Do agents often work on each others' tickets?
- With a reward structure in place, are there any concerns that agents would try to cheat the system? Do you need a separate report or notification to show tickets where assignee was changed AFTER solve?
1
Stylemix Support
Stephen Belleau thank you for your answer. I will check the suggested custom metric soon and inform you here of any progress. I can live without $ sign.
Regarding your questions:
- you are right, it needs to include closed tickets as well.
- agents will work only with their tickets. Reassignment will not be allowed between agents. Re-assignment will be controlled by the admin.
I'm planning to use this trigger to prevent agents from reassigning tickets - https://support.zendesk.com/hc/en-us/articles/360038674233-How-can-I-prevent-agents-from-reassigning-tickets-to-other-agents-
0