I am working on a JQL query that shows all open issues in a project, and closed issues that were resolved the last 15 days. I state my query like this:
(project = "PROJECTX" AND resolution = Unresolved) OR (project = "PROJECTX" and (resolution = Done and resolved < 15d )) ORDER BY Rank ASC
However it still lists issues in PROJECTX that was closed for months.. Banged my head on this one for a while, can anyone see what i am doing wrong here?
Kind regards
Jonas
Hi Jonas,
The resolved filter criteria should be "> -15d", so your filter should look like this:
(project = "PROJECTX" AND resolution = Unresolved) OR (project = "PROJECTX" and (resolution = Done and resolved > -15d )) ORDER BY Rank ASC
See the documentation and examples here: https://confluence.atlassian.com/jirasoftwarecloud/advanced-searching-fields-reference-764478339.html#Advancedsearching-fieldsreference-ResolvedResolutionDateresolutionDateResolved.
Thank you, that worked like a charm. Upvoted, set as a solution. Pet yourself on the back.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Jonas,
That issue was closed with what resolution value?
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.