I am creating a JIRA filter with below code. It refers to Sprint number (current Sprint ). I want to have a filter that always will show me list of issues in Active Sprint so that will have no need to create a separate Filter criteria for each new Sprint
project = XXX AND issuetype in (Bug, Improvement, Story) AND status in (Open, "In Progress", Reopened) AND Sprint = 65 ORDER BY issuetype DESC, cf[10008] DESC, Rank DESC
You can do
Sprint in (openSprints())
openSprints is a collection of all open sprints. Constraining by project etc may be good enough. We have many projects and hence many sprints so we had to create our own currentSprint("XXX") JQL function.
There is also "closedSprints()" and "futureSprints()"
I just found a previous answer https://answers.atlassian.com/questions/199842
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you! That helped!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Nick, unfortunately it does not work for me - what I receive is "An option provided by the function 'openSprints' for the field 'sprint' does not exist."
It happens while using
Sprint in openSprints()
P.S We are using Jira Cloud
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
i had that error when i used "=" instead of "in". Also in JIRA cloud
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It is a too late to reply but hope this will help someone else. You are missing a set of parenthesis
Sprint in (openSprints())
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
what are you supposed to out in between the () ? the name of the sprint?
It doesnt work for me
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Yana,
Please try the filter described here
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.
yep.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you!
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks.
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.