Forums

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

JQL and multiple OR labels

Danny Brothers January 7, 2021

I have a simple query that I want to use in a Kanban board sub-filter. I want to exclude any tickets that have either of these labels: Hold or Ongoing. Here's what I have so far, but it's not working (tickets with either label show up). 

(type = "My Department") AND (labels != hold OR labels != ongoing)

I've also unsuccessfully tried:

(type = "My Department") AND ((labels != hold) OR (labels != ongoing))

 

I should note that the first query with only (labels != hold OR labels is EMPTY) does work. I think I need to keep that EMPTY statement too. 

 

3 answers

1 accepted

2 votes
Answer accepted
Radek Dostál
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.
January 7, 2021

If I'm understanding this then this should be it:

I would add that you may be misunderstanding what 'OR' does -- it's one or the other. So when you do labels != hold OR labels != ongoing, they both cancel each other out.

 

If I do 'not in()' below, then this is basically "does not contain any of these labels listed":

issuetype = "My Department" AND (labels IS EMPTY OR labels NOT IN (hold, ongoing))

Danny Brothers January 7, 2021

You're a king! Do you have any idea how long I suffered with this? Thank you so much!!! (it worked!). Yes, I totally misunderstood the OR function. 

0 votes
Anup November 30, 2022

Hi,

I am trying with multiple labels and it is not working. If I keep label=Feedback, it works but not with multiple labels. Pls help

project = ABC AND labels in (Feedback, Process Change, Engagement) AND status not in (Completed, Done, Cancelled) ORDER BY Summary ASC, updatedDate DESC

0 votes
KAGITHALA BABU ANVESH
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.
January 7, 2021

Hi @Danny Brothers ,

Try this once

Type = my department and labels not in (Hold,Ongoing)

Danny Brothers January 7, 2021

That almost got it but I needed the Is Empty in there as well. Thank you so much!

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
FREE
TAGS
AUG Leaders

Atlassian Community Events