Hey,
I need a JQL query to filter issues that do not have the status "Closed".
Currently, I am using the following query: resolution = Unresolved AND Organizations = "Org"
Can you help me? Thanks!
It is possible to extend the existing JQL query with an additional Status field:
resolution = Unresolved AND Organizations = "Org" AND status != Closed
It is strongly recommended that you go through the JQL query document to understand better how to construct a JQL.
https://support.atlassian.com/jira-service-management-cloud/docs/jql-fields/#Status
Thank you.
Thanks Victor!
Is there a way to apply the same query to all the queues at once?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Sebastian,
You will want to use the status != Closed JQL
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks!
Another question, Is there a way to apply the query to all queues at once?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey @Mikael Sandberg ~ only if the Unresolved text were in quotes would that be considered as the resolution value. In this case,
resolution = Unresolved
translates to open issues...
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.