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
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.