Is there a query that I can use to find all issues in a filter that has moved multiple sprints,
Say Issue A has moved from Sprint 1 to sprint 2 and then to sprint 3
Is there a way that I can all such issues in. that filter?
Hi @Abin Joy -- Welcome to the Atlassian community!
Using the search that @Sivarama Krishna K suggested showing the Sprint field, you can narrow the list by only looking at issues which have be in closed sprints:
project = myProject
AND sprint IN closedSprints()
ORDER BY Key
And, when you want to see items in previous and the current sprint, you can use:
project = myProject
AND sprint IN closedSprints()
AND sprint IN openSprints()
ORDER BY Key
Best regards,
Bill
In every sprint, you can find the issue which is moved.
Even if you try search issues, and JQL as sprint = "Sprint 1", you will get list.
Add a column of Sprints to see the sprints it belongs
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.