For my project there are non epic issues that are pending others, I want to see all those issues. I am trying the following query but it's not working:
project = "Project Name" AND issuetype != Epic AND status = Status 1, Status 2
Hi @Zulfiqar Ali Shah Kazmi and welcome to the Community!
If you want to reference multiple statuses in a list, try the following instead:
project = "Project Name" AND issuetype != Epic
AND status IN ("Status 1", "Status 2")
Use IN (...) and - if your status names contain spaces - use quotes.
Hope this helps!
Thank you so much @Walter Buggenhout
The query worked like a charm. Solved my problem. Really appreciate your help. Also, thanks for welcoming me to the community. Looking forward to learning a lot over here, and hopefully contributing too.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
welcome to Atlassian community
Try this one
project=“your project name” and issuetype!=epic and status in (status1,status2)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you @pinky_reddy for your answer and also for welcoming me to the community. Actually, the query that @Walter Buggenhout provided worked for me. Yours was 90% there. Apparently, we need quotation marks " " inside the parenthesis before and after typing the statuses.
Thanks again.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Spend the day sharpening your skills in Atlassian Cloud Organization Admin or Jira Administration, then take the exam onsite. Already ready? Take one - or more - of 12 different certification exams while you’re in Anaheim at Team' 25.
Learn more
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.