Hello,
Currently I have a board that excludes a few components (Example: Let's say my project has Components X, Y, & Z)
I want to exclude tickets with ONLY component X, but if a ticket has Component X & Component Y, I want it to appear on the board.
Anyone have any suggestions on how to to accomplish this?
Hi @Noah Moore I would suggest that you do this filtering with Quick Filters instead of applying it to the board filter.
I'd like to avoid this approach, but appreciate the response!
If I have a project with 35 components and multiple boards displaying specific components of that project, having the team use quick filters could go wrong as many are not Jira professionals.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Noah, this JQL works for me with three test components.
(project = "ProjectName") AND (component not in ("Component Two") OR (component = "Component Two" AND component = "Component Three" AND component != "Component One"))
The output in the list view. There's at least 6 tickets with Component Two the only ones that show are those associated to Component Three.
Hope this gets you started.
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.