I have go an Epic A and Sub-Tasks B+C that are both listed in a Jira structure.
B+C is liseted underneath A.
How can I create a (S-)JQL filter that filters the Epic with its Sub-Tasks if all issues are in resolution 'Resolved' (A+B+C)?
If one issue (C) is still in progress the Epic (A) and its Sub-Tasks (B+C) should be visible in the structure.
I tried somthing like subIssueOrIssue in [resolution = unresolved] which did not work properly for this issue.
Hi Max,
The filter subIssueOrIssue in [resolution = unresolved] is correct, but you need to apply it at parent level only, because if one of the children is resolved, it contradicts the filter and disappears.
Please, let me know if this helps.
Regards,
Egor Tasa
ALM Works
Ah okay perfect!
I've got another problem now...
There is another issue D underneath the Epic A that should not be considered in the filter.
Example:
A+B+C is closed but D is open -> Epic A with its Sub-tasks C+D and also D should not displayed.
Do you have any idea? Thx!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Max,
You will have to distinguish D somehow, for example if it has fieldX set to Y
subIssueOrIssue in [resolution = unresolved and fieldX!=Y]
Regards,
Egor
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.