Hey everyone! I’m just starting out with Jira and could use some help. I’m trying to figure out how to search for issues that meet two criteria:
- They have a particular label
- They contain specific text in either the title or description
Is there a way to do this in Jira? I’ve looked around but can’t seem to find the right combination of search options. Any tips or step-by-step instructions would be super helpful!
I’m hoping this will help me organize and find relevant issues more easily. Thanks in advance for any advice you can share!
Absolutely, you can combine label and text searches in Jira. I’ve found the JQL (Jira Query Language) to be incredibly powerful for this. Here’s a quick approach:
- Go to the search bar and click ‘Advanced’
- Enter: label = “yourlabel” AND text ~ “your search text”
This will find issues with your specified label that also contain your search text anywhere (title, description, comments).
Pro tip: Use wildcards like * for partial matches. For example, ‘bug*’ will match ‘bug’, ‘bugfix’, etc.
Remember, JQL is case-insensitive by default. If you need case-sensitivity, use the ‘MATCHES’ operator instead of ‘~’.
Hope this helps streamline your Jira workflow!
yo pete, jira’s got u covered! use the advanced search and try this:
label = yourlabel AND (summary ~ searchtext OR description ~ searchtext)
replace yourlabel and searchtext with ur stuff. it’ll find issues with that label and text in title/description. play around with it - jira’s pretty flexible once u get the hang of it!
I’ve been using Jira for a few years now, and I can tell you that combining label and text searches is definitely possible. Here’s what I do:
In the search bar, use the following syntax:
label = “your-label” AND (summary ~ “your-text” OR description ~ “your-text”)
Replace “your-label” with the specific label you’re looking for, and “your-text” with the text you want to find in the title or description.
This search query will return all issues that have the specified label AND contain the specified text in either the summary (title) or description.
One thing to keep in mind is that the text search is case-insensitive, so you don’t need to worry about exact capitalization. Also, if you’re searching for a phrase, put it in quotes.
Hope this helps you get started with more advanced Jira searches!