Hello,
I’m trying to create a burndown chart for issues that meet either have a parent with “Release Note?” as Yes or a grandparent with “Release Note?” as yes. I’ve tried multiple ways so far.
- I tried adding the field link to the advanced settings, but it won’t let me add from multiple hierarchies
[jira.customfield_12548_e]
name = “Epic Release Note?”
data_type = “string”
dimension = true
update_from_issue_key = “epic_key”
javascript_code = ‘’’
if(issue.fields.customfield_12548 ) {
issue.fields.customfield_12548_e = issue.fields.customfield_12548;
}
‘’’
[jira.customfield_12548_e]
name = “Master Feature Release Note?”
data_type = “string”
dimension = true
update_from_issue_key = “jpoh_parent_3”
javascript_code = ‘’’
if(issue.fields.customfield_12548 ) {
issue.fields.customfield_12548_e = issue.fields.customfield_12548;
}
‘’’
- I tried creating a calculated measure, but it doesn’t work when I make a graph in the time dimension
Sum(
Filter(
Descendants([Issue].CurrentMember,[Issue].[Issue]),
([Issue].CurrentMember.Parent.Get(‘Release Note?’) = “Yes” OR
[Issue].CurrentMember.Parent.Parent.Get(‘Release Note?’) = “Yes”)
AND
DateInPeriod(
[Measures].[Issue created date],
[Time].CurrentHierarchyMember
)
),
[Measures].[Story points created]
)
- I tried making a calculated member, but this isn’t working either.
Aggregate(
Filter(
– iterate through set of issues
Descendants([Issue].CurrentMember,[Issue].[Issue]),
– apply filter criteria to each issue
[Issue].CurrentMember.Parent.Get(‘Release Note?’) = “Yes” OR
[Issue].CurrentMember.Parent.Parent.Get(‘Release Note?’) = “Yes”
)
)
I just want this burndown filtered. Please help!