Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,560,636
Community Members
 
Community Events
185
Community Groups

JQL question, Issues with a sprint filter

Edited

Ive got quite a big query which I'm using to determine tickets that need to be looked at in backlog refinement (either new or over 28 days since we last looked at them). What I'm trying to find is:

  • Tickets that have no priority and are not in the current or a future sprint
  • Tickets that have no previous review date and are not in the current or a future sprint
  • Tickets that have a previous review date over 28 days ago and are not in the current or a future sprint

So individually I have these queries:

Tickets that have no priority and are not in the current or a future sprint

project = AEA AND issuetype = Story AND status not in (Done, Closed) AND priority = "Not Set" AND sprint NOT IN (openSprints(), futureSprints())

 

Tickets that have no previous review date and are not in the current or a future sprint

project = AEA AND issuetype = Story AND status not in (Done, Closed) AND "Priority Last Reviewed Date" = EMPTY AND sprint NOT IN (openSprints(), futureSprints())

 

Tickets that have a previous review date over 28 days ago and are not in the current or a future sprint

project = AEA AND issuetype = Story AND status not in (Done, Closed) AND "Priority Last Reviewed Date" >= -28d AND sprint NOT IN (openSprints(), futureSprints())

 

Im pretty sure its a problem with how im using "(openSprints(), futureSprints())" because when I drop this off it brings back the entire contents of my board, when I add this it drops loads of items including ones that are in the backlog. Any thoughts would be really appreciated!

1 answer

1 accepted

3 votes
Answer accepted

Ive solved my own problem "(openSprints(), futureSprints())" only pulls back issues that have a sprint, so if the sprint field is empty it doesnt find them so "(Sprint = EMPTY OR Sprint not in (openSprints(), futureSprints()))" worked!

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events