I am trying to filter in my JIRA enviroment across two different labels. At the moment its only filtering as an "OR" statement but i would like it to filter as an "AND" statement. the Comma (,) seems to represent the OR but need the equivalent for the "AND".
Thank you
Hi @Jeremy Schloss -- Welcome to the Atlassian Community!
I am guessing that you are trying the labels IN (blue, green) set membership syntax, which would be a logical OR of the values. Please try this instead to confirm that all desired labels are in the issue:
project = myProject AND labels = blue AND labels = green
In case you know SQL, the above should return nothing...but JQL is not a SQL. :^)
Kind regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.