Explore recipe: Finding tickets with a specific word in the subject

Return to top

13 Comments

  • Dominic (Roca)

    Hi all,

    First off, thank you for this article, very cool!

    I realise this a year later, but I'm wondering if anyone can help me.

    I am trying to count tickets that haver certain keywords or strings in the subject line. If I create the attribute as per above, it always shows me "Has this word" "Does not have this word",

    If I just use a simple

    CONTAINS(LOWERCASE([Ticket subject]),"booking failure") then it still gives a TRUE = has keyword, FALSE = these tickets don't have this keyword.

    I have to report on dozens of keywords in the subject line and would ideally like to put these in a table, but the TRUE/FALSE is messing up my table.
     
    How can I just say IF this ticket contains keyword, show the number of those tickets.
     
    I have went ahead and created a standard metric instead of the attribute, but now it shows me the tickets in a column and since I need to add dozens, they will not fit. Please see below.
     
    I do realise I need to make this more efficient and not rely on subject line, I am working on it, but I need to still report on the tickets in the system with certain subject lines.
     
    Help?
     
    Thanks,
    Dominic
    0
  • Chandra Robrock
    Community Moderator
    Most Helpful - 2021

    @... You should be able to display the Metrics as a Row by clicking into Chart Configuration on the right-side menu and then Columns. When you have a Table visualization selected, you should see a checkbox to select next to the 'Metric on Rows' option. 

    0
  • Dominic (Roca)

    @..., many thanks! That helps a lot.

    0
  • Dominic Jodoin

    Thanks for the great tutorial! I was wondering if it's possible to do something similar but instead of looking for keywords in a Ticket's subject, I would like to look for a string in any of the comments (i.e. public or private) on a ticket. For example, I would like to report on the number of tickets containing a link to our documentation site. Thanks!

    0
  • Rob Stack
    Zendesk Documentation Team

    Hi Dominic Jodoin, what you are looking for isn't currently possible, but it would indeed make a great feature. Can I suggest you add this to our feature requests section at https://support.zendesk.com/hc/en-us/community/topics/1260801325209

    That will bring it to the attention of the product team and enable other customers to vote for it. Thanks!

    0
  • Karen M.

    Hello, I have been looking for an answer and couldn't find the a way to do this:

    We have an specific e-mail address where some users are texting us and we need to forward it to the proper e-mail to create a Zendesk ticket (that's working and it's not a problem) , the issue is that Im trying to create a query where to list all the tickets that we have received and forwarded as mentioned.

    If I search on the Zendesk views (using the magnifying glass) and I can see them all but I'm trying to create a query to have a list, I can't find a formula, metric, attribute, etc to accomplish this.

    The e-mail is included in the body of the ticket, it doesn't show up as an asignee or submitter since it comes as a forwarded e-mail and the submitter would be one member of my team.

     

    Hope I could explain myself and hope someone has an idea or workaround for this

     

     

    0
  • Dane
    Zendesk Engineering
    @Karen 
     
    This can easily be done by the use of triggers and tags. If the element you are looking for is in the body of the email, you can create a trigger with the following condition and action. 
     

    For every ticket that will be created with the email you have specified on your condition the trigger will add a tag to it. Once the ticket has been tagged, it will be easy to make a query in Explore.
     
    Hope this helps.
    0
  • Mike Talbott

    Hi, 

    Is there a way to find tickets with more than one keyword in the subject? For example, I'd like to find all tickets that contain the words "train," "steam," or "engine" in the subject. Please advise. Thank you.

    0
  • Dane
    Zendesk Engineering
    Hi Mike,
     
    You can use the calculated metric below:
     
    IF ((CONTAINS(LOWERCASE([Ticket subject]),"word1")) OR(CONTAINS(LOWERCASE([Ticket subject]),"word2"))OR(CONTAINS(LOWERCASE([Ticket subject]),"dane")))
    THEN "Has this word"
    ELSE "Does not have this word"
    ENDIF
     
    Hope this helps!
    0
  • Ryan St. Wrba

    Hello,

    Does this work with custom text fields? I'm trying to use contains to find tickets with a specific text string in a custom text field, and it just seems to not work at all. Explore shows every ticket as not containing the string, even when they do.

    0
  • Teresa

    So this is great for a count, but how would one pull/build a report to show the actual ticket information within those tickets?

    0
  • Gab Guinto
    Zendesk Customer Care
    Hi Ryan,

    Have you checked if the string of text in your formula, example – 

    – is in lower case? If you're using the function 'LOWERCASE' just like in the sample above, the string should be in lower case. 
    0
  • Gab Guinto
    Zendesk Customer Care
    Hi Nicole,

    Similar to the sample table above, you can add the attribute Ticket ID as slicer under Rows to see the list of tickets. You can add more attributes as Rows or Columns to the table if you need to see more information on these tickets. 
    0

Please sign in to leave a comment.

Powered by Zendesk