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 have created a filter to remove labels of reviewed from tickets that we have already gone over - however, they are still showing up. Can someone help me by taking a look at my filter
project = "RACC - Web Application" AND resolution is EMPTY AND issuetype not in (Initiative, Program, Feature, "Time Log") AND priority = "Should Do" AND created <= startOfMonth(-36) AND status in (New, Specification, Ready) AND (labels not in (maintenanceideas-high, maintenanceideas-medium) OR labels is EMPTY OR labels not in (reviewed)) ORDER BY created DESC
Hello @Dawn Dahlke
I think it's just a problem of brackets
Can you try that :
project = "RACC - Web Application" AND resolution is EMPTY AND issuetype not in (Initiative, Program, Feature, "Time Log") AND priority = "Should Do" AND created <= startOfMonth(-36) AND status in (New, Specification, Ready) AND ((labels not in (maintenanceideas-high, maintenanceideas-medium) OR labels is EMPTY OR labels not in (reviewed))) ORDER BY created DESC
Let me know if it's convenient !
Cheers
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
My bad, I misread your question sorry, do you want issues in the last 36 months or before this period ? I know the t-way to count time for Atlassian is strange
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
before this period - but it is the reviewed tickets (ones we have already gone over and discussed) that I do not want showing up in my filtered list - could that be what is causing them to still show even with the addition of "OR labels not in (reviewed)" status
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Right, and when you filter just with project = "RACC - Web Application" AND labels != reviewed you can see these tickets ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
no but then I get all my tickets not just the filter of "should do" baffling dilemma
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I got it to work - I moved the reviewed project = "RACC - Web Application" AND resolution is EMPTY AND issuetype not in (Initiative, Program, Feature, "Time Log") AND priority = "Should Do" AND created <= startOfMonth(-36) AND status in (New, Specification, Ready) AND (labels not in (maintenanceideas-high, maintenanceideas-medium, reviewed) OR labels is EMPTY) ORDER BY created DESC and that removed all the tickets weird but thank you for your help.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Nice, I'm happy for you and you're welcome
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.