I have a board where the cards have multiple labels. The query we need is for all cards with a particular label but if there are additional other specific labels, they should not be returned.
We need to Include all cards with Label A but Exclude if the issue also has
Label A AND Label B OR
Label A AND Label C OR
Label A AND Label D.
Hi @April Barrow and welcome to the community!
You want something like this:
labels IN (labelA) AND labels NOT IN (labelB,labelC,labelD)
That works. Thanks @Mark Segall
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.