I am writing a JQL to filter tasks that have been worked in more than 1 Sprint. I am trying to use the query "sprint in closedSprints()" and "sprint in openSprints()".
However, the filter needs to show up tasks that have also been closed in older sprints but have gone beyond 1 Sprint
Is there any way to achieve this?
Hey @Deepika ,
Would the below JQL example work for you:
(sprint in openSprints() and sprint IN closedSprints()
OR
statusCategory = done AND sprint in closedSprints()
)
The first part brings back all issues current in a sprint that has started AND were in a previously closed sprint.
The second part looks for all closed/done issues that were in a previously closed sprint.
My assumptions:
Hope this helps,
Danny
Sorry, but the "done" part of this will not work properly. Boards can have different definitions of done, and statusCategory is not what they look it. The status is what matters, and only status that is mapped to the last column on the board.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Good point @Nic Brough -Adaptavist-
(assuming I understand your statement) 😊
The JQL is being used as a quick filter on a board and then the statuses would need to be very specific rather than use status category.
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.