Explore recipe: Reporting on tickets with similar tags

Return to top

10 Comments

  • Jeff

    What list

    0
  • Brett Bowser
    Zendesk Community Manager
    Hey Jeff,

    当您选择添加both rows and metrics, you should see a list of metrics you can use. From the list you'll select the metrics and attributes mentioned in the above article.

    Let me know if you see something different on your end.

    Cheers!
    0
  • Jeff

    How would I do this same action but for multiple lines. (ie. by social media by platform, facebook, youtube, etc.)

    0
  • Jeff

    这是另ther string of tags I would like to create additionally:

    0
  • Dane
    Zendesk Engineering
    Hi Jeff,

    You can use this format:

    IF (CONTAINS([Ticket tags],"ab_")) THEN "ABS"
    ELIF (CONTAINS([Ticket tags],"auto")) THEN "AUTO"
    ELIF (CONTAINS([Ticket tags],"closed")) THEN "CLOSED"
    ELSE "Other tags" ENDIF

    Hope this helps!
    0
  • Raúl

    How would I go about setting this up so that it groups multiple tags into a single group. Here's my use case:

    I have a set of tags I want to track as a group, say:

    tag_1
    tag_2
    tag_3

    And I want to compare this group to another tag:

    tag_4

    Basically, I want to be able to pull up that group of tags and compare the overall count/volume to other tags.

    0
  • Christopher Stock
    Community Moderator

    HiRaúl, you can create a custom 'standard calculated metric' to capture the group of tags you're interested in using the INCLUDES_ANY function.

    IF (INCLUDES_ANY([Ticket tags], "tag_1", "tag_2", "tag_3")) THEN [Ticket ID] ENDIF

    This would allow you to compare against tickets with other tags.

    1
  • Aaron Peace

    Is there a way to exclude a tag? we need to compare all tickets with a tag true vs false

    my code below has a syntax error

    IF (CONTAINS([Ticket tags], "billableticket")) THEN "Billable"
    ELIF (CONTAINS([Ticket tags], "billableticket"))IS FALSE THEN "Non-Billable"
    ENDIF

    I have tried to move the FALSE parameter around but i cant get it to work. There does not seem to be a NOTCONTAIN or EXCLUDES perameter.

    0
  • Zsa Trias
    Zendesk Customer Care

    Hello Aaron,

    You can try this formula instead:

    IF (INCLUDES_ANY([Ticket tags], "billableticket")) THEN "Billable" ELSE "Non-Billable" ENDIF

    Reference:Reporting with tags

    1
  • Aaron Peace

    Thanks,Zsa Trias, that appears to have worked. I expected it could be simplified like that somehow.

    0

Pleasesign in留下你的评论。

Powered by Zendesk