Hello,
I’m sorry, I’m going to decribe complicated case. I think It fails with bug in the end.
My report uses a hierarchy:
'''
[jira.customfield_theme]
name = "THEME"
inward_link = "is contained in"
issue_type = "Theme"
update_from_issue_key = "customfield_init"
[jira.customfield_init]
name = "INIT"
inward_link = "is contained in"
issue_type = "Initiative"
update_from_issue_key = "customfield_change"
[jira.customfield_change]
name = "CHANGE"
inward_link = "is contained in"
issue_type = "Change"
update_from_issue_key = "customfield_cte"
[jira.customfield_cte]
name = "CTE"
inward_link = "is contained in"
issue_type = "CTE"
update_from_issue_key = "epic_key"
[[jira.issue_hierarchies]]
name = "THEME-Initiative-Change-CTE"
all_member_name = "All Issues by THEME"
levels = [
{name="THEME",key_column="customfield_theme",issue_type="Theme"},
{name="INIT",key_column="customfield_init",issue_type="Initiative"},
{name="CHANGE",key_column="customfield_change",issue_type="Change"},
{name="CTE",key_column="customfield_cte",issue_type="CTE"}
]
It works great
Next, report contains “measure0”:
(
[Measures].[Issues created],
[Issue Type].[CTE],
[ifStructure].[PI_2023.1]
)
I believe, you don’t want want to know what it counts, but I can tell you that it works good.
My story is about “none” hierarchy:
Most time it works great as well. We can see last issue types in hierarchy called “CTE”
But sometimes, after collapse|expand of root grouping element
“none” hierarchy of report changes to this…
and the job of “measure0” algorithm breaks as well
apart from

For other branches, when Theme-Init-Change-CTE link exists, everything works as expected.
Need help…