Right now it shows all active sprints and also closed sprints that also had the task.
Ex: is sprint 1 had task 1 and the sprint was closed and task 1 was moved in sprint 2 - it will show both sprints in the list even if Sprint 1 is now closed, and Sprint 2 is active.
Thank you in advance.
Hi @Stefan Mitu , you can query for "issues" in active sprints using the following JQL.
project = abc and sprint in opensprints()
hello there. As i mentioned in the description: it shows also closed sprints that had the issue at one point.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Stefan Mitu , so what I offered will show only issues in open sprints. If an issue was in a previous sprint but incomplete and rolled into a future sprint that is now active that issue is included. If you are asking for those issues that are in an ope sprint but exclude any issue that were in now closed sprints then try the following.
project = abc and sprint in opensprints() And sprint not 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.
Hi @Stefan Mitu ,
Welcome to Community,
We had an issue yesterday where the details from old sprints where also visible. It should be resolved now.
The below queries should help you
project = JRA AND sprint in openSprints() will give you all issues that are associated with the current active sprint.
Thank you,
Prachi
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.