The purpose of the following article and video is to provide understanding of how data collected by the Survey app gets onto a Zendesk ticket, is subsequently is pushed over into Explore and then how to build an example report.
It shows how to create a NPS stacked bar report measuring the distribution of detractors (those who rated 6 or below), passives (those who rated 7 or 8), and promoters (those who rated 9 or 10). In addition to this, it also shows how to calculate the Net Promoter Score (NPS) and incorporate it into your report on a secondary axis.
This is intended to be used as a stepping stone to understand the concepts behind building reports and metrics in Zendesk Explore so that you may go on to build further reports.
Metrics used in the video above are:
NPS DETRACTORS:
IF NOT INCLUDES_ANY([Ticket tags], "closed_by_merge")
THEN
IF(VALUE(Organization score (0-10)) < 7)
THEN
[Ticket ID]
Endif
Endif
NPS PROMOTERS:
IF NOT INCLUDES_ANY([Ticket tags], "closed_by_merge")
THEN
IF(VALUE(Organization score (0-10)) > 8)
THEN
[Ticket ID]
Endif
ENDIF
NPS PASSIVES:
IF NOT INCLUDES_ANY([Ticket tags], "closed_by_merge")
THEN
IF (VALUE(Organization score (0-10)) = 7)
THEN
[Ticket ID]
ELIF (VALUE(Organization score (0-10)) = 8)
THEN
[Ticket ID]
ENDIF
ENDIF
NPS ALL RATED TICKETS:
IF NOT INCLUDES_ANY([Ticket tags], "closed_by_merge")
THEN
IF(VALUE(Organization score (0-10)) < 11)
THEN
[Ticket ID]
Endif
ENDIF
NPS SCORE:
((D_COUNT(NPS PROMOTERS)/D_COUNT(NPS ALL rated tickets))*100)-
((D_COUNT(NPS DETRACTORS)/D_COUNT(NPS ALL rated tickets))*100)
Tip: The NPS SCORE metric depends on what you name your metrics for 'NPS Promoters', 'NPS Detractors' and 'NPS All rated tickets'. If you do not use the exact name of the metrics that you created, then this metric will not work. Given that this metric is dealing with metrics you created earlier, it may be worth typing in this metric from scratch.
|
Note:
|
Bonus report...
This video will show you have to build a report that gives you the average NPS or Ticket score broken down by the agent assigned to the ticket: