Problem:
I have two template tickets with labels on them. I want to hide them from a Kanban board without using Quck Filters or Swimlanes by using the JQL query:
project = *Project Key* AND (labels != 'labelName' or labels is empty) ORDER BY Rank ASC
Steps I've tried:
1. I have used the above JQL query and added it to Quck Filters. However, each person would have to select the Quick Filter in order for it to apply to their board view.
2. I have used the above JQL query and applied it to Swimlanes but it reconfigures the board and you can still see the ticket in the Swimlane.
Main Question
Is there a way to apply a global filter to a Kanban board so anyone viewing the board will not see a ticket with a specific label without using Quck Filter or Swimlanes?
Hello @Craig Lashley
Changing the JQL of the filter of the board will apply the results to the whole board.
Thank you @Sunny Ape
I don't want to get too far off my original topic so I do apologize for the addtional question. Is there a way to filter based on the actual ticket number so a single ticket does not appear on a board? I am not too familar with JQL and currently trying to learn more about it's syntax. Thanks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, you can find specific issues based on their ID or their key via JQL using the issueKey field.
Refer to the JQL documentation:
Search for issues with a particular issue key or issue ID (i.e. the number that Jira automatically allocates to an issue).
Example. Find the issue with key "ABC-123":
issueKey = ABC-123
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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.