If I had a filter that always dealt with the latest sprint, is there a way to eliminate my hard-coding the current sprint name?
Ex: Project = WA and Sprint = currentSprint() ?
Seems to do what I need, thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
NB - "Only available if you are using JIRA Agile 6.6" https://confluence.atlassian.com/display/JIRA/Advanced+Searching+Functions#AdvancedSearchingFunctions-openSprints()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
i tried "and sprint not in futureSprints()" but that doesn't work to exclude future sprints, looks like the function doesn't work properly unless i am missing something, or the definition of 'future sprint' is not what you and i think of what is future (i.e. everything that is neither current nor closed'
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
+1, this needs to be fixed. How about a function currentSprint() instead of open sprints.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
+1 for currentSprint() of some kind, just got this request from our web team today
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
+1 for currentSprint(), though I'm not sure how that would work exactly since there can be multiple currently open sprints, so perhaps instead newestOpenSprint() and oldestOpenSprint() if the sprint start time is tracked
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
+1 for CurrentSprint() Would also to add CurrentActiveSprints() which should work on the Active Sprints Scrum Board and utilize the sprints which are selected
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
+1, this would also resolve my issue of finding items that are not in the currentSprint()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can use "AND sprint in openSprints() and sprint not in futureSprints()"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
+1 for currentSprint() or activeSprints(), openSprints() is not intuitive and doesn't match the terminology used elsewhere in Jira.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you have only sprint per project the query below is nice:
sprint in openSprints()
But I have a project with multiple active sprints, how can I differentiate between those?
My goal is to create a filter that shows per sprint, the stories that we added after the sprint started.
What would be nice is something like:
sprint in openSprints('added stories') to show feature creep
maybe even:
sprint in openSprints('removed stories')
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Just realized you can use "sprint in openSprints() and sprint not in futureSprints()" to get only the current sprint
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes. 'sprint in openSprints()' shows only active sprints. I'm not sure if the behavior changed, but this is very handy. This and the futureSprints() function cover most of my use cases.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yay, this worked for me! thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
"sprint in openSprints()" never returns any issues returned by "sprint in futureSprints()".
So, your suggested JQL can be simplified to "sprint in openSprints()", as indicated by the accepted answer.
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.
+1 for currentSprint() or activeSprints()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
+1 for currentSprint()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I want a data field that indicates an issue's current sprint association. Right now the "sprint" field contains every sprint an issue has ever been associated with. This makes sense for long term reporting but it makes it difficult to see which sprint an issue is in right now. The currentSprint() and openSprint() don't provide that information.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Completely agree, Joey, that this would be useful. Ideally, the team finishes all stories in one sprint, but that doesn't always happen.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
+1, this would be really useful for us. A distinction between sprint history and current sprint is really important, currently it's all rolled into one.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
project = REPLACE_WITH_YOUR_PROJECT_ID AND sprint in openSprints() AND status in (Open, "In Progress") ORDER BY priority DESC, updated DESC
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
There seems to be a bit of confusion on the functionality of openSprint()
I think it's because the name suggests that it returns all sprints that are not closed whis includes future sprints. I was also confused by this.
This is NOT the case. From openSprint() documentation it clearly states: "Search for issues that are assigned to a sprint that was started, but has not yet been completed"
So in order to find tasks in the active sprint you only need to write "sprint in openSprints()" no need to exclude future sprints.
Remember: There can be many active sprints. Typically one per Scrum team. Hence you still need to include only the tasks that relates to your team.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you have multiple open Sprints in your Backlog for forecasting and you want to view only your active Sprint, this JQL works:
project = MIG AND Sprint in openSprints() AND sprint not in futureSprints() ORDER BY status DESC, issuetype
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I used Sprint in openSprints() AND Sprint not in futureSprints()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
for the current sprint use:
and sprint in(openSprints()) and sprint not in(futureSprints())
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can add one unique label, and combine the filter. eg. as below:
project = IHD AND labels = "Digitalabc" and Sprint in openSprints() ORDER BY Rank ASC
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.
Please upvote useful comments, so others will see them. :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What about open sprints of current project or of a specific project (like openSprints(current project) )?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I need to see last 4 sprints. The function currentSprint() would help here if it existed. I don't see how openSprints() can help here, so the original question seems to be still relevant.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can use closedSprints() to get at issues in past sprints. Not sure about limiting it to the last 4 though, maybe using updatedDate would get you close. Something like:
Sprint in closedSprints() AND updatedDate >= -8w
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I keep getting the error 'An option provided by the function 'openSprints' for the field 'sprint' does not exist.'
We definitely have an active sprint with issues in it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Are you using 'sprint in openSprints()' in the JQL search?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
currentSprint() not working for me
Error : Unable to find JQL function 'currentSprint()'.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
a function called currentSprint() does not exist. OpenSprints() is what you are looking for.
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.
An open Sprint is any Sprint that is not in a close status. We have several open Sprints because we are Product Roadmapping. I need a search function that only returns the current "Active" sprint that has been "started" and that we are current working in. Open Sprints returns too many issues.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Starting with the 7.2 Jira Agile REST API, you can set properties on sprints. Depending on what resources you have available to you, you could set an "active" property on the desired sprint and update as needed.
Not sure if you can use that in JQL yet like you can issue.property, but if you have ScriptRunner @Jamie Echlin might have a suggestion or two.
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.