I need a list of all completed tickets from the previous sprint ? How can I get this information in a Next Gen project ?
Thanks ,
Pradeep
Hello Pradeep,
Welcome to Atlassian community.
You can get a list of all tickets completed in your previous Sprint by performing the steps below:
- Navigate to your Next-gen Project > Project Settings > Features > Enable Reports
- Navigate back to your project Main page > Click Reports > Select Burn up Report > Select the last Sprint of your Project
- You will have all the history of the Sprint, containing the list of all the issue that was resolved on that Sprint
Also, you can use a JQL query to get the list of closed issues, like this:
sprint= "Example sprint name" AND status was "Example status name" on "2018/07/30 12:15"
However, this will only return issues to you that are currently in that sprint and that had this specific status at this specific date/time. In this case, you would need to know:
- The name of your previous Sprint
- The date/time that the sprint was closed
Specifying both data in the query should allow you to get the list you want.
Let us know if this information helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.