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.
It's not possible to add a negative operator to filters, but the search feature does support that: http://help.trello.com/article/808-searching-for-cards-all-boards
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.
Would be great to has given feature, maybe filter by search query to reuse given logic.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I would like this as well - search for all cards that do not include one label. Seems like it would be a big help to many.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
> but the search feature does support that
Yeah, that would be why the question specified filter ;-)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I really appreciate to have such a Feature to exclude labels in the filter option
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.
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.
Yes that would be exactly how I would use it as well. Show any card is is not marked Done for example.
This feature would be very helpful
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.
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.
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.
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.
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.
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.
The search workaround suggested here isn't as useful as being able to see my normal view of the whole board but with certain cards excluded based on which labels they have. I'd really appreciate that view. Thanks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I agree. The search workaround is not very helpful. The search list disappears when I click on one item. The filter keeps in place once I open and close a card. This is what I need.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It is unfathomable that anyone could have left out this feature at the first place, let alone leaving it out for another 4 more year!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I so would like to have this feature too. My most used board has 26 labels. Searching and filtering NEED exclusions.
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.
It's almost been 4 years since this issue was raised. Is this on the roadmap? It is difficult to create our workflows without label exclusion.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It‘s a must have feature for me. Sorting by filter keeps the cards in its lists. And it works within the app.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Here's how I was able to do this using the browser's developer console:
To hide all the cards with the stock pink label:
x = Array.from(document.querySelectorAll("a.list-card:has([data-color=pink])"));
x.forEach(x => {x.style.display="none"});
":has()" is a "relational pseudo-class" CSS selector - see https://drafts.csswg.org/selectors/#relational .
Cards in Trello are <a> elements, and they (usually? all?) have a CSS class= attribute including the class "list-card".
The visible label tags on cards are somewhere within the HTML of the card's <a> element.
So, this selector says, "give me all <a> elements that are cards, and which also have some sub-element with an attribute named data-color that has the value pink." Or, looking at it another way, "look at all the elements with the attribute data-color=pink, go up through the ancestors of each of them, then return any that happen to be cards".
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is a very simple work around for the time being. Thanks for posting!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have found a bit of a workaround which will give you a list of cards that DO NOT have certain labels.
Its using the trello Dashcards powerup to count the cards that meet the "not that label" criteria. and in doing so provides a list of all the cards that comply, which you can export to CSV for further examination.
https://trello.com/power-ups/6048e897c73d032a983e2a7c/dashcards
Its not a replacement for being able to filter the cards in place within the board, but at least gets you the card data you are looking for.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you, unfortunately not allowed for my board. Since it does not fully meet requested functionality I will not pursue requesting company to allow.
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.