Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How to show all open tasks/stories/etc but not "done"

Leon Sandow
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
March 23, 2021

I have a query:

assignee = xxxx OR assignee = xxxx OR assignee = xxxx AND status not in (Done, Resolved) ORDER BY assignee, key


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? 

1 answer

1 accepted

2 votes
Answer accepted
Paul O
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.
March 24, 2021

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
Leon Sandow
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
March 24, 2021

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!

Paul O
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.
March 24, 2021

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

Like Leon Sandow likes this

Suggest an answer

Log in or Sign up to answer