Forums

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

Filter for Board with 2 projects, but I only want to show one Epic of one of 2 Projects

Mireille
Contributor
January 27, 2023

Hello 

I am in the Board Configuration page, and I would like to edit the Filter: 

project in (TESCO, SRMP) ORDER BY Rank ASC

to restrict it to just one of the epic in SRMP: I am trying to edit the query

project in (TESCO, SRMP) AND Epic Name = SRMP-1 (that is the name of the epic that I would like to display) ORDER BY Rank ASC, but it is not right...

Can I have on a Board all the epics of Project1 and only one epic of project2?

Thank you in advance

1 answer

1 accepted

1 vote
Answer accepted
Trudy Claspill
Community Champion
January 27, 2023

Hello @Mireille 

Do you also want the child issues of that Epic?

To get all the issues from TESCO and only the one Epic (and none of its child issues) from the SRMP project this is the query you need:

project = TESCO or (project = SRMP AND issue = SRMP-1) ORDER BY Rank ASC

If you also want the child issues of SRMP-1, and those children are only in the SRMP project, then use this:

project = TESCO or (project = SRMP AND (issue = SRMP-1 or "Epic Link" SRMP-1)) ORDER BY Rank ASC
Mireille
Contributor
January 30, 2023

Thank you so much Trudy! It is exactly what I needed

Suggest an answer

Log in or Sign up to answer