Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Display issue in a board from other projects

Krithica G March 8, 2021

Hi,

I have 3 projects A B and C. In the project A i have 3 sprints - A1, A2 ,A3.In project B i have B1, B2. In project C i have 2 sprints C2, C3.

I created a board in project A to display issues that are in open and future sprints. It displays all the issues in A1, A2 and A3 from project A.

project = A and sprint in(openSprints(),futureSprints()) ORDER BY RANK ASC

In the same board i want to display issues from project B and C that are assigned to sprints A1 , A2 and A3 in the project A board. Tried below query.

project in( A,B,C) and sprint in(openSprints(),futureSprints()) ORDER BY RANK ASC

This displays all the sprints including B1, B2, C2, C3. I only want the issues from project B and project C that are assigned to project A sprints.

Can anyone please help?

 

 

 

1 answer

1 accepted

1 vote
Answer accepted
Nic Brough -Adaptavist-
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 8, 2021

Sprints do not belong to projects, they belong to the boards within which they are created.   

If you want to only see issues in sprints A1, A2 and A3, then you need to amend your query so that selects only those sprints, and ignores other sprints.  So:

project in( A,B,C) and sprint in(A1, A2, A3) ORDER BY RANK ASC

Krithica G March 8, 2021

Thank you

Suggest an answer

Log in or Sign up to answer