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.