Is it possible to filter by Assignee is NOT User?

Rebecca Lewis 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-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
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 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 December 18, 2018

Thank you, that worked!

1 vote
j Schipper 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 June 2, 2023

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

Luke Vandervort June 2, 2023

Like this

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

Igor Głowa 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