Hi!
we have this report where we are measuring, from the Flow Framework, the Flow Time (from In Progress until Closed).
For that, we are providing the possiblity to select the Flow Items and their final status, either Resolved or Closed.
And for the Time, I created an Aggregation to display the last 2 Halves of the year, depending today.
However, it takes long time to load the results. How can it be improved?
Note: I can’t use the Issue Cycle configuration because I am implementing in template account to be distributed automatically to the rest of accounts.
Median Issues Resolved working days:
NonZero(Median(
Filter(
Descendants([Issue].CurrentHierarchyMember, [Issue].[Issue]),
DateInPeriod(
[Measures].[Issue resolution date],
[Time].CurrentHierarchyMember
)
AND
(
[Measures].[Issue status] = "Closed" OR
[Measures].[Issue status] = "Resolved"
)
AND (
[Measures].[Issue resolution] = "Fixed"
OR
[Measures].[Issue resolution] = "Done"
OR
[Measures].[Issue resolution] = "Configuration"
OR
[Measures].[Issue resolution] = "Ready"
)
AND
(
[Measures].[Issue type] <> "Sub-task"
OR
[Measures].[Issue type] <> "Sub Task Defect"
OR
[Measures].[Issue type] <> "Test"
OR
[Measures].[Issue type] <> "Test Set"
OR
[Measures].[Issue type] <> "Test Execution"
OR
[Measures].[Issue type] <> "Pre-Condition"
OR
[Measures].[Issue type] <> "Epic"
OR
[Measures].[Issue type] <> "Initiative"
OR
[Measures].[Issue type] <> "Milestone"
)
AND
([Measures].[Issues resolved count],
[Time].CurrentHierarchy.DefaultMember,
[Transition Status].[Flow Time]) > 0),
-- total time per cycle
([Measures].[Workdays in transition status],
[Time].CurrentHierarchy.DefaultMember)
)
)