Anyone have a good Jira query that shows what stories are carried over from sprint to sprint.
I have tried old queries with the new company I work with but none work because the way the set it up is so jacked up.
basically I want to see any story that did not reach a done state in one sprint and carried over to the next sprint. Seems to be quite the problem where i am at now. Poor sprint planning.
Any good reporting plugins?
i think that you would need an addon e.g. Scriptrunner or similar. With scriptrunner you could use
issueFunction not in completeInSprint(board name, [sprint name])
but that would only cover a specific sprint. Unsure if there is a way to cover all historical sprints.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I can't try script runner my company wont let me buy new plugins or even try them.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This does not work.. It is pathetic that JIRA cannot provide a report of story carrying over from one sprint to another. Such a shame for a product to provide the simplest of the report
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 @Stefanie Sullivan , is your question related to the topic of this post, I.e. how to report on sprint 'carry over' or are you asking specifically about reporting on closed sprints? The later is available in most default sprint reports where you can select the sprint of interest.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Jack Brickey I am looking to create a dashboard to show which issues keep carrying over and how many times. I would like to see that info for the current sprint and the previous sprint.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Stefanie Sullivan , I haven't given this a lot of thought as there hasn't been a need. However, I would play with Automation and a custom number field. Something like this...
for the automation rule...
trigger = sprint completed
condition = for all issues not in done column category
Action = increment the counter
Action = add comment for historical purposes, e.g. "This issue was not completed in xxxx sprint". The xxxx is a smart value for the sprint triggering the rule.
for the custom field ("sprint miss count") default it to "0".
with this you could build filters that could be used with dashboard gadgets - project = abc and sprint is not empty "sprint miss count" != 0
you could use pie charts or two dimensional gadgets, etc. to display.
final note - there certainly could be a better way to achieve your goal. I just wanted to share my quick thoughts.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
will bring that back to the team and let you know how it goes. thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Tried the following but it showed an error upon saving.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Chabba, Sunish ,
yes the branch will bound your issues to those in the Sprint. Use the following and add your action components.
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.
I think JIRA should come up with a report that shows all the items that were carried over across multiple sprints. This would help teams identify if they are:
Reviewing carryover work from a nice report would really help teams conduct good retros and improve.
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.
Would it not be super helpful to have an icon or indicator on issues that are carryover. Make it stand out a bit so it is easier for the team to spot, monitor, track, and helpfully address and improve on.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I was looking for this exact thing and found what might be a simple solution for people.
1) Write a query of your current sprint. Really 'Sprint in openSprints()" which will always find you the current open sprint.
2) Make a dashboard or go to your dashboard.
3) Add the Pie chart gadget to the dashboard
4) Select your query
5) Select Statistic Type = Sprint
The pie chart will then give you a break down of all of the Sprints as a piece of the pie.
For example
10 items in Sprint 10
6 items in Sprint 9
3 items in Sprint 8
1 item in Sprint 7
Basically this means, you have 1 item that has been in 4 sprints, 3 items in 3 sprints, 6 items in 2 sprints, and 10 items in your current sprint.
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.