Run a report on "tickets submitted with checkbox ticked"

Answered

1 Comments

  • 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

Please sign in to leave a comment.

Powered by Zendesk