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

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,551,662
Community Members
 
Community Events
184
Community Groups

Jira Filter to List Assignees' Issues Across Selected Projects

Hello, Again, Trusted Community Members:

I am trying to create a Jira Filter that will list each given Assignee's open issues across selected projects. Here is my latest attempt:

project = WinProgramming AND assignee = "Cameron Goodwin" OR assignee = "Darrell Johnson" OR assignee = "Frank Wu" OR assignee ="JCruz" OR assignee = "minaz hirji" OR assignee = "Rodney Tang" OR assignee = "Roxana Duran" OR assignee = "Tyler Wade" OR assignee = "Vlad Gonchar" AND status != "Development Complete" OR status != Closed ORDER BY assignee ASC, priority DESC, rank DESC

I'm having some problems with this filter:

  • I tried using a group for the selected Assignees, but got every user, including JSM users, instead of just the selected project(s)
    • I also tried using a group for the projects but I still got every project
  • The output list also contains Unassigned issues
    • I tried adding status != "Unassigned" to filter those out, but got error message that "!= does not apply to status" (or something to that effect)

How do I change the filter to get my desired output?

Thanks, as always, to this amazing Community.

-John Tucci
  Megabyte Systems, Inc.

1 answer

1 accepted

4 votes
Answer accepted
Fernando Eugênio da Silva
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.
Apr 24, 2023

@John Tucci 

These are the details of your query:

project = WinProgramming AND assignee = "Cameron Goodwin"

It's only bringing issues from WinProgramming where the Assignee is Cameron, all the rest of OR assignee = XXXX are doing a global Jira search out of the first project.

If you want to catch issues with these Assignee users from specific projects, your filter should look something like this:

project IN (Project 1, Project 2, Project 3) AND Assignee IN (User 1, User 2, User 3)

Then all issues from all those projects will be listed with which any of those users is an Assignee.

If you want to do a search for Assignee on specific projects, try the following:

project = project 1 AND Assignee = User1 OR project = project 2 AND Assignee = User2 OR project = Project 3 AND Assignee = User3

It seems your confusion is using the Operators for JQL, for this, check the page for see a litle more: Advanced search reference - JQL operators

Be careful using the OR operator in your query, if you don't delimit it, the search it will do will be global in jira

Hope this helps,

Regards,

Fernando - Nimble Evolution

@Fernando Eugênio da Silva :

Hello, Fernando. My sincere "Thanks" for you helpful response and examples. I have edited my filter using your info, and I now get the output I intended!! 

I will indicate this as an Accepted Answer. Once again, this incredibly intelligent and generous Community continues to amaze me. I still strive to be able to join this august group.

Kind Regards,

-John Tucci

Like Kelly Arrey likes this

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
STANDARD
PERMISSIONS LEVEL
Site Admin
TAGS
AUG Leaders

Atlassian Community Events