JQL reports back the correct number of Cancelled issues when I use (resolution = Cancelled), but comes back with nothing found when I use the inverse (resolution != Cancelled).
How do I search for issues that are not Cancelled?
@Greg Huber, if you want to find issues that are still open, IE, has no resolution, you need to run a JQL like this:
resolution != cancelled or resolution is EMPTY
The first part of the query (resolution != cancelled) should return all tickets that have a resolution other than cancelled. The second part will return all tickets that are still open.
Thanks,
Kian
Thank you! That works.
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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.