I've accidentally moved closed issues to an upcoming (not open, not closed) sprint in the backlog view and I can't view the closed issues in the sprint, only the open issues. The Print Report also isn't helpful since it only allows you a report of closed sprints, not upcoming sprints.
Hi @George ,
You can find out these issues through the following JQL.
sprint = 'Sprint name'
Re-open this issues and find them in the Backlog List or in the unstarted Sprint.
Thank you 🙇♂️
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @George
You can use this JQL Query in order to find the issues that are closed in the sprint.
status WAS "closed" and sprint = "Sprint 18"
And if you need to go further in details like over a specific date if the issues have been moved.
AND sprint in openSprints() AND status changed during (2015-08-22, 2015-09-04)
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.