Filter on more than one label

Robin DiNunzio October 6, 2015

I want to create a filter that is based on two labels. For example:

labels in ("PSG_10/2/15", needs_analysis)

I want this query to return tickets that contain both labels, however this query appears to 'OR', not 'AND'. Am I forming this incorrectly?

1 answer

1 accepted

2 votes
Answer accepted
Jeremy Gaudet
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.
October 6, 2015

That's how "in" works, as long as the label value is in the list of options, it passes.  You'd need:

labels = "PSG_10/2/15" and labels = "needs_analysis"
Yanet Morales June 8, 2020

This suggestion works for me

Suggest an answer

Log in or Sign up to answer