Filter command for "Except"

Mostafa October 18, 2016

I am trying to find a command to exclude 1 or 2 things while filtering as I want all statuses to appear except cancelled or closed ones.

1 answer

1 accepted

1 vote
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.
October 18, 2016

The easiest way for that one is

status not in (cancelled, closed)

You can use that as a clause in more complex jql, and note the "not", which inverts the find.

Mostafa October 19, 2016

Thanks it worked

Suggest an answer

Log in or Sign up to answer