How do I create a JQL filter that will show me all issues which have been in multiple sprints?

Mark Merizan July 12, 2021

I am trying to create a JQL filter that will show me all issues which have been in multiple sprints, without regard to whether it is in the current sprint. It would be nice if the sprints and dates were also available, but if I can just get the issues list that would be 90% of the problem.

2 answers

1 vote
Mark Benander April 15, 2022

I know this is old, but perhaps this will help someone.  I further realize this said "without regard to whether it is in the current sprint", but that ends up being part of the solution.  This is what I've done to at least show me everything in the current sprint which has been carried over from earlier sprints:

Sprint in closedSprints() AND Sprint in openSprints()

At the very least, this shows me items in my current sprint that were carried over which I may want to dig into and make sure are moving along now.

1 vote
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
July 12, 2021

There's a simple "cheat" for this - the sprint field (it's not quite a field, but close enough for most purposes) is a multiple-select field.

If an issue has been in any *active* sprint, the sprint field for the issue contains a record of that.

So, while it sounds like a search for this could be quite hard, you can answer the basic question with "sprint is not empty"

However, while the data is there, there is no direct "count number of sprints", so there's no way to do what you want to, with a clause like "number of sprints > 1".

You could look for JQL functions in apps that can count the options in a list, but I'm not sure there are any for Cloud.   It might be easier to find something that can do "put sprints.size() into a numeric custom field" - automation might be able to do that, and some of the scripting apps certainly can.

Mark Merizan July 15, 2021

Thanks for the response. Yes, I knew how to determine if an issue had been in any sprint. We were specifically looking for a way to find issues that had been held over from one sprint to another multiple times. So we really needed the "count". But additional investigation suggests that I'm not the only one to try to do this and there isn't any good way. My work around was to export the data and do the analysis in external tools.

Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
July 15, 2021

I've seen this done with a scripted field on server, that was able to rummage through the history to see where "close sprint" had pinged a story over to another one, and count the number of times it had happened.  JQL for "sprint jump count > 0" was then a simple clause.

But yes, it's a pain without coding, I don't think you can do it directly and en-masse, only by looking at each issue one at a time.

Like Mark Merizan likes this

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
FREE
PERMISSIONS LEVEL
Site Admin
TAGS
AUG Leaders

Atlassian Community Events