Filter for one label removes every item

Marc Lefebvre December 6, 2016

I'm trying to filter out issues I've labelled with the word 'Outlier' from the Control Chart. Whenever I apply that filter it removes every issue, even ones that do not have that label. Why is this not working? The filter syntax I'm using is:

labels != Outlier

I've also tried:

labels not in (Outlier)

Thanks.

1 answer

0 votes
Vasiliy Zverev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
December 6, 2016

It seems that issues with no label are also removed. Try this: and (labels != Outlier or labels is empty)

Suggest an answer

Log in or Sign up to answer