Hi all!
I have the hierarchy: Client (Epic) > Project (Story)
Each Project contains the field SalesRepresentative
I need to create a custom filter, where I select Client who has POC into it's name + Project has POC into it's name + where SalesRepresentative = Maria + status 'In progress'
Could you please help?
Hello @Roman Zolotarevskyi
Do you want the "Projects" (Stories) with POC in their name only if they belong to a "Client" (Epic) that also has POC in its name?
It sounds like what you want is...
Epics where Summary contains POC and
The child issues of those Epics, but only the children where the Summary contains POS and the SalesRepresentative = Maria and the Status = In Progress
You can get the Epics with this filter:
issueType=Epic and Summary ~ "POC"
You can get child issue separately with this filter:
issueType=Story and Summary ~ "POC" and
status="In Progress" and
SalesRepresentative="Maria"
However to get just the children of the Epics, you would need to be able to modify that second filter with something like this:
issueType=Story and Summary ~ "POC" and
status="In Progress" and
SalesRepresentative="Maria" and
Parent in (issueType=Epic and Summary ~ "POC")
That last element to get the children based on a dynamic list of Parents is not supported natively in Jira.
Are you willing to consider, or do you already have, any third party apps that extend the functionality of filtering?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm glad I could help.
If your issue has been addressed satisfactorily, please consider marking the Answer as Accepted to help other community user find posts with validated solutions.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.