Extend a board with only tickets containing a specific label from another project

Antti August 11, 2022

Hi, 

I understand you can use Filter queries to aggregate eg. tickets with a label "some-label" from multiple projects into one eg. `projects in (Project1, Project2)  AND labels = "some-label"`. 

I'm wondering if I can make a board with all tickets from Project1 and only tickets with the label "some-label" from Project2? 

Thanks for your help! 

2 answers

1 accepted

3 votes
Answer accepted
Tansu Akdeniz
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
August 12, 2022

Hi @Antti 

Issues in board depend entirely on board filter. 

Go to Board Settings -> General -> Saved Filter and click Edit Filter Query

Change JQL; Project = A or (Project = B and labels = xxx)

Save it!

1 vote
Antti August 12, 2022

Actually, I think I found an answer already. 

`project = Project1 OR project = Project2 AND labels = "some-label" ORDER BY Rank ASC` seems to do the trick.

Suggest an answer

Log in or Sign up to answer