I have 2 boards in 1 project ("project_name").
2d board uses 1 specific Label (let's call that label "unique").
For my first board, which I don't have control over, we use this filter:
project = "project_name" ORDER BY Rank ASC
For my 2d board I use this filter:
project = "project_name" AND labels = "unique"
However, all my tickets from 2d board are showed on 1st board. Is there a way that I can expel labels = "unique" from duplicated on 1st board?
Thanks for your time!
Hi @Liling Chen sure, you can update your first query from
project = "project_name" ORDER BY Rank ASC
to
project = "project_name" AND (labels != unique OR labels is empty) ORDER BY Rank ASC
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.