I would like help on how to switch the below query to show results That DO NOT have labels equal XYZ, the below shows the opposite.
I tried the IS NOT fuction which ofc didn't work. I am new to jira too.
project = CoolProject AND status = "In Review" AND "Labels[Labels]" = XYZ AND created >= -10w ORDER BY created DESC
Hello @Jessica Cote
Welcome to the community.
project = CoolProject AND status = "In Review" AND "Labels[Labels]" not in (XYZ) AND created >= -10w ORDER BY created DESC
If you also need to include issue where there may be no labels at all then...
project = CoolProject AND status = "In Review" AND ("Labels[Labels]" is empty or "Labels[Labels]" not in (XYZ)) AND created >= -10w ORDER BY created DESC
And in case you have not seen it before, here is a reference for Advanced JQL Searching.
https://support.atlassian.com/jira-software-cloud/docs/advanced-search-reference-jql-functions/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Join us June 26, 11am PT for a webinar with Atlassian Champion Robert Hean & Loom’s Brittany Soinski. Hear tips, stories, and get your burning questions answered. Learn how Loom makes training and enablement easier. Don’t miss it!
Register todayOnline 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.