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.
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.
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.