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.
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))
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That almost got it but I needed the Is Empty in there as well. Thank you so much!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.