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
Hi,
I would like to create a quick filter that shows me all backlog tickets across two projects on one board that excludes tickets with specific labels attached.
So far, I have got...
(project = "project 1" OR project = "project 2") AND labels not in (DevOps, devOps, data, DataEngineering)
The above eliminates all tickets from project 2 instead of including the ones that do not have the specified labels.
Any ideas would be greatly appreciated
Hi @Lizzie Jack , try adding the "empty" consideration.
(project = "project 1" OR project = "project 2") AND (labels not in (DevOps, devOps, data, DataEngineering) or labels is empty
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Lizzie Jack ,
What is your board filter query? Is it includes the project 1 in if not then include it on the main board filter query then you can simply try below
Project in ( 'project1', 'project2') and labels not in (xyz, abc)
Or directly use labels not in ()
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.