Hi I have multiple JIRA ticket numbers , some starting with OP - , INC- and XYZ-
Example:
OP-12345
INC-12345
XYZ-12345
How do we include tickets starting with OP- only and exclude tickets number starting with INC- & XYZ- in JIRA search?
Thank you!!
Hi, welcome to the Community!
I see your question was posted twice and that you received an answer on the other copy of your question from a Community Leader!
The portion of the issue key you described is called the Project key. In our documentation, what you mentioned as a Jira ticket number (example: OP-12345) is called an issue key. If you're interested in learning more about the terminology and how things are organized, this document is a great place to start!
In a JQL search, you can simply use this search string to only include issues from the OP project:
project in (OP)
So as an example, if you wanted to see only issues that were open or in progress, you could use a search like this:
status in (Open, In Progress) and project in (OP)
You could also use the basic search in Jira which will give you drop-downs for values like the Project.
I hope that helps!
Cheers,
Daniel
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.