Recent searches
No recent searches
Creating custom metrics in Explore to pull tickets with 2+ tags
Answered
Posted Jul 24, 2019
Most of our valuable data requires metrics that have more than 1 tag.
Is there a way to create a metric to pull # of tickets with more than 1 tag? For example, # of tickets solved with tags 'canada' and 'processed'.
This is possible in Insights and we would need this in Explore in order to pull valuable data.
0
5
5 comments
Ryan Mumby
Hey Maddi,
From the query you're building select Calculations (calculator on the right), then choose Standard Calculated Metric.
Try this formula
Drill into your data and do some spot checking by looking up a few randomly selected Ticket ID's to make sure it's grabbing tickets with the data you expect, but this should do the trick.
Zendesk recently changed how they call out the the "Tags" attribute in their formulas though so I'm not 100% certain. They've moved from a model that called out Ticket, Org, User etc tags separately to 1 single "Tag" attribute, which is why I'm suggesting the checking to make sure its operating correctly.
0
Gab Guinto
Hi Maddi,
You can copy the formula that Ryan provided above. Thank you Ryan for this! :-)
This should give you the data that you need on your query.
Cheers!
0
Maddi
Copied the formula above and changed it to fit our tags (thanks Ryan!), but am getting this error:
When I go into chart configuration, I get this:
Any insight on how to get the above formula working?
From what I've read, Explore can't pull data using the 'AND' function. Is this still the case, explaining why I can't pull data? Is there any other way for us to pull data using metrics with 2+ tags?
0
Ryan Mumby
Hey Maddi - I'm able to save the above just fine in my instance. I would say double check your syntax or repost a screenshot of the actual formula here for us to have a look and verify there are no errors in the formula, and if that's not working then you might have to contact support and report a bug.
0
Riya
I was coming across that error as well. It looks like `[tag]` needs to be replaced with `[Ticket tags]`
I've found this other comment to be more helpful: https://support.zendesk.com/hc/articles/360022186094/comments/360001857174
Quoted (and modified) here:
IF (([Ticket tags]="your_tag_name") AND ([Ticket tags]="your_tag_name_second") )THEN [Ticket ID] ENDIF
replace your_tag_name and your_tag_name_second with the tags you want to search for.
0