Hello team,
I am trying to create a JQL query that will return the tickets of an assignee in a specific project that are not finished (meaning that their status is not "DONE" or "RESOLVED")
Tried some different query versions with this one getting me closer to what I need:
project = "Customer service desk" and assignee = XXXXXXX AND (status != Done OR status != Resolved)
But is not filtering the Done or Resolved tickets, it just returns everything from the particular assignee.
Interesting enough, when I remove the parentheses the filter does not work at all (!) and returns tickets from other users and other projects.
Any help would be appreciated!
Thank you
After some testing it seems that the correct syntax is something like this:
project = "Customer service desk" and assignee = XXXXXXXAND status in (Approved, "AWAITING APPROVAL", Open, "PENDING IMPLEMENTATION", Reopened)
Hi Amvrosios - Welcome to the Atlassian Community!
Just try this: project = "Customer service desk" and assignee = XXXXXXX AND statusCategory != Done
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @John Funk !
Thank you for your time and effort to address my question
The thing is that using:
project = "Customer service desk" and assignee = XXXXXXX AND statusCategory != Done
It returns also the tickets with status "Resolved" which is also tickets I want filtered
Maybe I have a syntax error on my code, the general idea is that I don't want tickets with status Done or Resolved
Is there anything else you could recommend ?
Thank you,
Amvrosios
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Their status is "resolved"
Is a custom status that we have created. Is that relevant to the query?
Thank you,
Amvrosios
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.