It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
I’m trying to get a filter to show JIRA that do not include a certain label, but I’m hitting a wall with the logic. When I use “AND NOT” it excludes JIRA that shouldn’t be excluded, and if I try to use “labels is not “ I get an error about “is not” isn’t used for non-empty values of the field “labels”.
The filter query is this, and I’ve bolded where I’m having issues:
project = ODSY AND "Found By" = GVP AND status in (Open, "In Progress", Reopened, Resolved, "Info Needed", "Needs Review", "Insufficient Info", Pending, Triaging) AND NOT labels = ODSY_KANBAN_FTL_TRIAGED
Is there a way for my filter to show JIRA that do not have the ODSY_KANBAN_FTL_TRIAGED label?
To check for all issues that do not have the ODSY_KANBAN_FTL_TRIAGED label you need to add:
project = ODSY AND "Found By" = GVP AND status in (Open, "In Progress", Reopened, Resolved, "Info Needed", "Needs Review", "Insufficient Info", Pending, Triaging) and (labels != "ODSY_KANBAN_FTL_TRIAGED" or labels is EMPTY)
This will also include issues without any labels - remove the last part of the query if you want to only look at issues which have at least one label.
More information and examples can be found in the documentation.
I have multiple projects that use variations of the same base workflow. The variations depend on the requirements of the project or issue type. The variations mostly come in the form of new statuses ...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.