I need help to filter in a way that returns Issues under a list of Epics (I've already defined the list of Epics using a Filter).
So, the structure of my project is as follows:
Each Epic has two custom fields - Theme (Checkbox) and Business Line (Dropdown). They're assigned as below:
- Epic 1 - BL1 AND Theme 1
- Epic 2 - BL1 AND Theme 1, Theme 2
- Epic 3 - BL1 AND Theme 1, Theme 3
- Epic 4 - BL2 AND Theme 2
I can filter for BL1, which returns Epic 1, Epic 2, and Epic 3. Similarly, I can filter for Theme 2, which returns Epic 2 and Epic 4. What I'm struggling with is finding a way of returning corresponding Issues. I want to filter so that for BL1, I can show Issues 1-6, and for Theme 2, I want to show Issues 4, 5, and 7. Is there a way of doing this?
I have already considered using ParentEpic, which didn't work (it's a team-managed rather than admin-managed project). Any thoughts?
ps: please ignore my name - this is a company account, and not affiliated with the Jira mgt team in any way, shape or form!