最近搜索


没有最近搜索

Run a report on "tickets submitted with checkbox ticked"

已回答


已于 2021年11月30日 发布

Hi,

Some tickets are escalated using a checkbox in our ticket fields.

I would like to run a report where I can see for each month, how many tickets were updated, that initially did NOT have the checkbox ticked, but were submitted WITH the checkbox ticked.

This needs to be deduplicated, i.e. a ticket that was submitted now with the checkbox ticked, and updated again 10x that month while having the checkbox still on, should only be counted as 1.

Could somebody help me how to set this up in Explore? 


0

1

1 条评论

image avatar

Gab Guinto

Zendesk Customer Care

Hi Niels,

You can build a custom metric using a similar approach as discussed in this recipe: Recording the time when a checkbox was checked.

Your custom metric formula should look something like this:

IF ([Changes - Field name]="{your_checkbox_field_name}")
AND
(([Changes - Previous value]="0") OR
([Changes - Previous value]=NULL))
AND
([Changes - New value]="1")
THEN
[Update Ticket ID]
ENDIF

Note that this must be built using the Ticket updates dataset.

This metric should count the number of updates where your checkbox was ticked; this will return 1 count for every unique ticket. 

1


请先登录再写评论。

找不到所需的内容?

新建帖子