You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Am trying to find a jql query that will show me how i can view issues that have carried over from previous sprint to the next sprint
Hello @Javan Asimba
Welcome to the Atlassian community.
If you want to search for issues carried over from a specific previous sprint to a specific next sprint you can use this JQL.
sprint in "<name of previous sprint>" and sprint in "<name of next sprint>"
If you want to create a general search for issues that carried over from any previous sprint to a current Active sprint you can use this JQL.
sprint in closedSprints() and sprint in openSprints()
You can add more refinements to the filters to limit the information to issues that otherwise match the filter for your Scrum board.
Hello @Trudy Claspill , thanks for responding.
So i have tried the 2nd jql query and get the following:
Refined the following query slightly
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In your second attempt you dropped the "sprints" keyword that proceeded "in closedSprints()"
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.