Hi,
I have a typical Jira use case. I want to search for Jira tickets that have 'ABC' or 'XYZ' in titles. It's not necessary to have both 'ABC' and 'XYZ' in the same ticket title. Is there a search syntax that will give me all the possible tickets list that have 'ABC' or 'XYZ' in titles? Thanks in advance.
Hi @Souro , welcome to the community.
you can use the following JQL in the Advanced issue search.
project = abc and summary ~ "ABC" or summary ~ "XYZ"
Thanks, Jack!
It looks like you're new here. Sign in or register to get started.