I need to build a query to filter issues closed in a specific sprint.
Using the sprint value & issue type/ status - brings all the issues that are closed in future sprints also.
Hi @Ramesh ,
Thanks for posting and welcome to the community.
I think you are using JQL while you refer query. Are you looking for issues closed in a sprint and also specific project or any issues closed in that previous closed sprint?
Please confirm.
hi @Suvradip Paul Sorry for the late response.
yes, you are right JQL am referring to.
"issues closed in a previously closed sprint for a specific project"
something equivalent of the sprint report seen under the reports.
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Ramesh ,
Thanks for your response.
Could you please try something like this?
Project = XXX and Sprint = YYY and status in (Closed, Done)
YYY - Here refers to the Previous Sprint details. In the above example the last status can be Closed and Done. If it's different, please update your query accordingly.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Suvradip Paul
sorry this one will get me the issues that are completed in future sprint also. some reason JQL ignore the sprint value and yields all the issues in the project that matches to the given status.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Ramesh ,
I think no, If I slightly modify the query and specify the Closed Sprints details here it should give me the issues only done as part of the Closed Sprint but not any future sprints.
The below would bring all the issues in that project in closed sprints.
Project = XXX and Sprint in (closedSprints()) and status in (Closed, Done)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I want all tickets closed in Spint 1. The current Sprint Sprint is Sprint 3 and contains a carry over ticket from Sprint 1 and closed in Sprint 3.
When i write a query to all tickets closed in Sprint 1, i should not get the one which is closed in Sprint 3. But it shows
How to eliminate the ticket which is closed in Sprint 3 when i search for the closed tickets in Sprint 1
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Suvradip Paul
this will help, but I need this for a specific sprint not all closed sprint.
Project = XXX and Sprint in (closedSprints()) and status in (Closed, Done)
Objective is to get a confluence link for each sprint to show the number of issues against various status.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Ramesh ,
I have an alternative thought.
Could you please look into this Knowledgebase Article to bring Jira Reports to Confluence - https://confluence.atlassian.com/confkb/how-to-bring-jira-and-jira-agile-reports-into-confluence-779163801.html and try to bring Sprint Report in confluence similarly?
Please check and let me know if this helps or in case you think otherwise.
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.