You're enrolled in our new beta rewards program. Join our group to get the inside scoop and share your feedback.
Join groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
I have a query:
But it still shows Status: Done tickets. I've tried a ton of variations, like status in EMPTY and status not in (done, resolved) and also resolution not in Done, but everything I've tried so far still shows tickets that are Done. It's got to be something really silly, right?
Couple of options:
assignee in (xxxx, yyyy, zzzz) AND status not in (Done, Resolved) ORDER BY assignee, key
or
(assignee = xxxx OR assignee = yyyy OR assignee = zzzz) AND status not in (Done, Resolved) ORDER BY assignee, key
I had my doubts because I'm still not 100% sure why mine didn't work (I guess it must be because of the OR statements on the assignees? So I was getting no "dones" from one assignee, but "done" stuff from the other two, maybe?), but this is perfect and I learned a more efficient way to list users. Thanks a mil!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, it’s the ORs and ANDs - exactly as you say. Just wrapping the clauses in parentheses clarifies the statement. Always beware multiple ANDs and ORs in jql
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.