The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Hide a particular group of cards with a certain label?

Jeff Guthrie
March 24, 2013

I would like to create a quick filter that hides all issues with a particular label. When I try to do this, the filter seems to hide more than what I wanted it to. This filter is trying to hide all issues with the label of mylabel...

project = "MyProject" AND (labels != "mylabel" OR labels != "") and status != Closed

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Answer accepted
Jeison
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
March 24, 2013

Hi there!

The problem here is that when you add a query to bring issues with "labels != mylabel", the search assumes that all issues must have a label, and this label is different from "mylabel". So what is missing is the inclusion of issues that have no labels. Does that make sense?

I believe your board filter is:

project = "MyProject" AND status != Closed

So the quick filter would be:


labels != "mylabel" OR labels is EMPTY

Hope it helps!