Hello,
Our sprints last one week. When the new sprint is created I am adding there all tasks that were not done in a previous one. I would like to know how many times the task was added to a new sprint and also to distinguish the task that was moved 1 time, 3 times or 10 times.
Thanks :)
Hi @Katya -- Welcome to the Atlassian Community!
There is no built-in way to query for that information with Jira Cloud. You can probably do this with a marketplace addon app for JQL.
As a work-around, what do you think of trying an automation rule to give you a quick report at the start of the sprint? Your project admin may add such rules as this is a built-in feature of Jira Cloud. That report could show the issues and number of sprints for each one.
Perhaps something like this:
{{sprint.name}} just started. Here are the issues:
{{#lookupIssues}}
* {{key}} was in {{sprint.size}} sprint(s)
{{/}}
And the email would look like this when you receive it:
Sprint 23 just started. Here are the issues:
* TPJS-399 was in 3 sprint(s)
* TPJS-328 was in 2 sprint(s)
* TPJS-312 was in 1 sprint(s)
* TPJS-311 was in 1 sprint(s)
* TPJS-296 was in 3 sprint(s)
To learn more about automation rules, please look at these examples and sources:
Kind regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.