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.
Community moderators have prevented the ability to post new answers.
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.
Thanks it worked
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.