I have a list of over 100 tickets, the majority of them Zerto related. How can I eliminate those specific tickets so I can search for ones more important.
With my old ticketing system, all we had to do was add the "!" sign followed by Zerto in the ticket description field, and the search would refresh and not show any tickets with the word Zerto in the ticket description.
Doesn't Jira have anything like this? No use going through the hassle creating a JQL query, because it could change often depending on what we need to filter out. It's basically this:
! (exclamation point). Specifies a "not" operation. Works for string and numeric values.
Doesn't Jira utilize special characters like this to make searching easy?
Thank you,
Roberta
Thanks Walter!
Since I guess I've been spoiled with how easily this works in other systems, I was looking for a quick, one-off way to search tickets that would fluctuate day to day, or as needed. As I mentioned to Matthew, I guess I can get one of my more experienced JQL co-workers to give me a hand as needed.
Roberta
Roberta,
Yes, the ! function works in Jira too, but you do have to use JQL. For your example, the appropriate JQL would be:
summary !~ Zerto
There is no way to do this within the basic search because basic search will always take what you put in the text box and try to find that exact string.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you Matthew, appreciate your response. I can ask one of my co-workers who us good with JQL, unfortunately, I', not:)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Roberta Day,
Yes it does. For text fields (like Summary), the search may not be 100% exact, though. Give the following a try:
summary !~ Zerto
(you can replace summary with other fields like Description or even text to search across multiple text fields at once)
On a side note: if categorising tickets is important, you may get better results if you put information like this in structured custom fields or labels. That will make your search (and even reporting / dashboarding capabilities) a lot easier and more reliable.
Hope this helps!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.