You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I created a custom board to filter my tasks only for the active sprint. everytime, i need to refresh the sprint in the board. is there a constant that refers the active sprint so that I don't need to change everytime sprint advances?
Hi @Mahadevan Hariharan
Project = "test project" AND sprint in openSprints()
Note: Replace test project with your project name.
Hope this helps
Regards
You can fine tune more with following Statement and so on,
Project = "test project" AND sprint in openSprints() AND resolution = unresolved
Note: Replace test project with your project name & use resolution key as per your terminology . It may be pending, unresolved , tobetaken anything. Kindly use accordingly .
Regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks! it works. openSprints() only works with "in" and not with "-"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
When I use this query it does not pull in any user stories or tasks that have rolled over from previous sprints. How do I include those in my query?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Aileen Leitner Buck - Is this still a problem for you?
I've just tried this on my JIRA board using the following...
project = MAJ AND Sprint in openSprints() Order by Rank ASC
We have quite a few +1 tickets that have rolled over from, e.g. Sprint 22 to 23 and these are visible for us.
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.
This doesn't actually reference the current sprint. It references all open sprints. This can be an issue if you create a sprint early for staging, but you don't start the sprint until it's ready to go.
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.
We can also try below Jql query, here we have removed closedSprint - the previous completed sprints & the future sprints. This Jql query gives you stories part of active sprint.
issuetype = Story AND Sprint not in (closedSprints(), futureSprints())
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.