Hi all,
As part of my new role I have been tasked with trying to track work in a report that is moved between sprint to sprint.
Is there a way to use a JQL function, so that work can be tracked if it is moved from:
Sprint 1 -> Sprint 2
and
Sprint 1 -> Sprint 3
Thanks,
Will
Hi @Mitchell, William -- Welcome to the Atlassian Community!
Here are some follow-up questions to help selecting a solution: when do you want to do this, and how often?
If you want to do this just after a sprint finishes...perhaps as input to a retrospective, you could use JQL such as this to find issues in a sprint that closed and are now in another sprint:
project = myProject
AND sprint IN closedSprints()
AND (sprint IN openSprints() OR sprint IN futureSprints())
If you need to do this often and need to look back in history, consider these options:
Please note: The sprint field can be cleared/edited, just like many of the fields in Jira. When that is not a concern any of these methods can help.
Best regards,
Bill
I think Issue History add-on will be helpful here. You can see all changes that have been made to issues by any user. If you add a sprint column, you'll see what sprints an issue was or is for now.
Try if it will be useful for you. This app is developed by my team, so let me know if you've got any questions.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
There is no native JQL for that, but you can try this workaround posted by Ignacio
You can also use the REST API to look into the history to field the value that was in the sprinf field
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.