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.
Hello Community,
I tried this query to list the stories moved over two sprints 510 and 511
project = "Project Name" AND issuetype = Story AND Sprint CHANGED during( "510" TO "511")
But Jira shows following error:-
Have any of you used the filter to list stories spilled over iterations? If yes can you please suggest my how to do the right query?
Thank You
Do you want to see only issues that changed from one sprint to another (from 510 to 511) or the ones that went through two sprints (510+511)?
I can suggest Issue History for Jira app as an alternative solution developed by my team. Here you can search by JQL and get the whole history of changes for these two sprints.
1. Write JQL as follows:
project = "Project Name" AND issuetype = Story AND Sprint in (510,511)
2. Add the Sprint column to the grid.
You will get the whole picture: what stories were in one of the sprints, what were transferred from one to another.
If you want only those stories moved from one sprint to another, you can export the report with data to an XLS file or CSV and filter there.
Here is a similar use case for projects: How many tickets were moved from one Jira project to another?
That's the only workaround that came to my mind.
There is a 30-day free trial, so you check if it can help you.
I'll give it a try. But it's not always two specific sprints a ticket gets spilled. Sometimes tickets slippage happens for more than two sprints. Also it's Sprint I'd 511 and 512 for now. But next month it will be 513 and 514.
Any suggestions on making the filter dynamic with reference to open sprint and future sprint?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Sanjog Sigdel If tickets are moved to more than two sprints, I suggest monitoring sprint history (in the sprint column). It shows all sprints an issue was in one raw. For example, select one sprint 512 you are interested in, and you will get all tickets and information about sprints those tickets are now or went through.
If you try an app and need more help with your case, you are welcome to schedule a demo and our experts will help with configuration.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Sanjog Sigdel,
As the error message says, Jira does indeed not support history searches on the sprint field. That means you cannot perform searches like WAS or CHANGED TO etc. on sprints unfortunately. There is a feature request for it that you can track here: JRACLOUD-39256 (it's a very old one, so I would not expect any progress there soon)
You can see issues that were removed from sprints in the sprint report, if that may help.
Hope this helps!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Looks like the request on history searches wont be supported by Jira. Keeping the question open for some time. Let's see if there are any workaround. Otherwise I'll close the question accepting this answer.
@Walter Buggenhout _ACA IT_ Thank You for letting me know about it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You don't need to worry about the "changed" part of this.
When an issue rolls over into the next sprint, it does not lose the information that it was in the sprint (that your team need to talk about where they failed to complete what they said they would)
You can find these with the query
project = "Project Name" AND issuetype = Story AND Sprint = "510" AND Sprint = "511"
(I suggest typing the two sprint = clauses because autocomplete will help you find the sprint names)
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.