Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

How do I get a list of specific Jira Issues (Key) using the advanced search feature?

I'm looking to get a search display of a specific set of issues (key) how to I write the advanced querry search for this? 

 

2 answers

Hi, this is works for me.

When you have project name Super project and his key is SP, then you can search more issues this way:

project = SP and key in ("SP-406","SP-395","SP-474","SP-473","SP-472","SP-455","SP-458","SP-453","SP-463","SP-389","SP-439","SP-422","SP-447","SP-456","SP-384","SP-375","SP-428","SP-422") ORDER BY key ASC

Thanks alot @tom_trnka 

1 vote
Sramanth Pandeti
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Sep 03, 2020

Hi @Martha Leo Welcome to the Atlassian Community!

You can use the JQL (Jira query language) to get search for a specific set of issues (such as stories or Epics or sub-tasks).

To write a JQL, you need to navigate to Filters(top menu) -> Advanced issue search and in the bar you need to write a query.

Example queries:

1) Show me all the issues in my project

Project = ABC

 2) I want to filter only Epics and Stories

project = ABC AND issuetype in (Epic,Story)

3) I want to see issues that are Done, Closed

project = ABC AND status in (Done, Closed) 

 There are lot of other things you can do with the filter too. You can follow the documentation here and learn more about JQL.

https://www.atlassian.com/blog/jira-software/jql-the-most-flexible-way-to-search-jira-14

Suggest an answer

Log in or Sign up to answer