Forums

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

Is it possible to filter by Assignee is NOT User?

Rebecca Lewis
Contributor
December 18, 2018

I created a JIRA user to assign things to that are not to be "done" such as tickets to log time for meetings, etc.

 

I want to filter these out of a board view. Is it possible to filter by issues to Assignee is NOT a certain user? Or, do I have to filter to Assignee = all other users except this one?

3 answers

2 accepted

0 votes
Answer accepted
Nic Brough -Adaptavist-
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.
December 18, 2018

Yes, and you've almost answered your own question - NOT is a valid operator in JQL.

Most of us would use the ! shorthand though.

Assignee is not currentUser()

Assignee != currentUser()

Both do the same job. 

Rebecca Lewis
Contributor
December 18, 2018

Thank you, that worked!

0 votes
Answer accepted
Sid
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.
December 18, 2018


option 1.  assignee in membersOf(<your_group>)AND assignee not in ("username1") 

option 2.
assignee not in ("username1")

or just use - assignee != "<user name>"

Rebecca Lewis
Contributor
December 18, 2018

Thank you, that worked!

1 vote
j Schipper
Contributor
July 15, 2021

This seems to work half for me on the backlog. 

assignee != "<username>"

also filters out all of the tickets which are not assigned. How do filter out only that username?

Luke Vandervort
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!
June 2, 2023

Me too! How do you fix that. Unassigned tickets disappear!

Luke Vandervort
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!
June 2, 2023

Like this

(assignee != currentUser() OR assignee is empty)

Igor Głowa
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!
July 11, 2023

@Luke VandervortYou can try: YOUR QUERY AND assignee is EMPTY OR YOUR QUERY and assignee != "username"

Suggest an answer

Log in or Sign up to answer