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.
Hi
I have a filter project = SF AND issuetype = Task AND (labels not in (KDD)).
It is a simple filter where i want to see all issue types tasks where we do not have a label "KDD". If i do "IN KDD" it works fine however "NOT IN" or "!=" does not work. I have tried different iterations reading blogs but nothing is working e.g.
project = SF AND issuetype = Task AND labels not in KDD.
project = SF AND issuetype = Task AND labels != KDD.
etc.
Welcome to the Atlassian Community!
My guess is that it is working fine, but you were expecting issues with no label to appear as well. "Not in" can only work with labels that have a value.
Try
project = SF AND issuetype = Task AND (labels not in (KDD) or labels is empty)
Thank you , that gives right results
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Welcome to the community. You just missed the following syntax in your JQL. Give the following JQL where Label value is enclosed with " " characters. This will work.
project = SF AND issuetype = Task AND labels not in ("KDO").
project = SF AND issuetype = Task AND labels != "KDD"
Hope this helps.
Best, Joseph Chung Yin
Jira/JSM Functional Lead, Global Infrastructure Applications Team
Viasat Inc.
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.