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.