How would I write a simple Query that would display the Active sprint? I.e. if we are in Sprint 5, I would "Sprint 5" to be displayed.
Hello @Janine_Memon a query like this should work
sprint in openSprints ()
Hi Janine, note that JQL is about issues and you cannot retrieve other data than a list of issues using this language. JQL It is not SQL.
Using Advanced search features you can type the following:
project = MyProjec AND sprint in openSprints ()
to retrieve a list of issues under your current Sprint of project 'MyProject'
Regards
Thank you!
This is not true. If you have a sprint with issues from multiple projects, this query only shows the issues from the project specified.
This function will break a jira gadget on a Confluence Page. Idk if it is all gadgets or just the Pie Chart.
When I use 'spring in openSprints()', I am getting a bunch of backlog items (but not ALL) that have no sprint filled out. Has anyone else seen this? I checked the history, these items have never been part of a sprint, that I can see.
Thanks for the answer. Works like charm. Just in case you want to filter everyone's else ticket use this JQL:
project = "YOUR_PROJECT_CODE" and sprint in openSprints() and assignee = currentUser()
This worked really well as a Quick Filter on a Kanban board. I also added a Quick Filter to the same board for "Exclude Current Sprint":
sprint not in openSprints()
I am seeing this, were you able to figure this out?
It seems to have worked itself out...I have a query like this:project = xxxx AND "Align Team" in (xxx, yyy) AND Sprint in openSprints() AND status = "Pending Approval"
This shows me the stuff that hasn't been approved to start yet but it's in the sprint. It works just fine. Not sure what 'fixed' it.
thank you, that worked for me
Works for me! Part of the team members cant see this filter do you know why?
It looks like you're new here. Sign in or register to get started.