Hello everyone,
I am running into a problem with my report that I would like to create and I cannot figure out what the issue could be…
What I need is a report that gives back the Avg time in hours an already resolved ticket has been in the statuses “todo”,“Open Lvl.1”, “Open Lvl.2”, “In Progress lvl.1” and “In Progress Lvl.2” added up
Avg(
Filter(
Descendants([Issue].CurrentHierarchyMember, [Issue].[Issue]),
NOT IsEmpty([Measures].[Issue resolution date])
AND
Sum(
{[Transition Status].[TODO],
[Transition Status].[Open lvl.1],
[Transition Status].[In Progress lvl.1],
[Transition Status].[Open lvl.2],
[Transition Status].[IN PROGRESS LVL.2]},
([Measures].[Days in transition status],
[Time].CurrentHierarchy.DefaultMember) * 24
) > 0
),
Sum(
{[Transition Status].[TODO],
[Transition Status].[Open lvl.1],
[Transition Status].[In Progress lvl.1],
[Transition Status].[Open lvl.2],
[Transition Status].[IN PROGRESS LVL.2]},
([Measures].[Days in transition status],
[Time].CurrentHierarchy.DefaultMember) * 24
)
)
This gives me an average of all the issues ever resolved in our Jira project, and I don’t know why…
Is there someone who could help me understand what is going on?
Thanks in advance,
Best
Christoph