Scrum board using Epic swim lane missing Jira from other projects in active sprint

Eric Man Hong Hui July 25, 2021

Hi, I follow the method described here, but jira tickets from other projects are still missing when epic is used to group the swim lanes:

https://confluence.atlassian.com/jirakb/issues-missing-from-the-active-sprint-when-swimlanes-are-configured-to-use-epics-779158645.html

 

Here's my query with a wildcard matching any epic name:

project = a OR (project = "b" OR project = c OR project = d OR "Epic Name" ~ '*') AND component in (c1, c2, c3, c4, c5) ORDER BY Rank ASC

 

When I group swim lane by any other attribute like project, then the board is working correctly.

1 answer

0 votes
Alexander Pappert
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.
July 26, 2021

your link says

project = SSP OR "Epic Name" = Epicnessss ORDER BY Rank ASC

jql

project = AWAMWRS OR (project = "GWAMASIA Planning" OR project = GWAMASIA OR project = AWAMHK OR "Epic Name" ~ '*') AND component in (WRS, WRE, IFDF, IF-DWH, MAMIS) ORDER BY Rank ASC

try

project in (a, b, c) and component in() OR epic name and component in ()

Eric Man Hong Hui July 27, 2021

This is what I tried, but it still doesn't work.

project = a OR (project = "b" OR project = c OR project = d) AND component in (c1, c2, c3, c4, c5) OR "Epic Name" ~ "*" AND component in (c1, c2, c3, c4, c5) ORDER BY Rank ASC

Suggest an answer

Log in or Sign up to answer