Hello,
I would put in place a report to the issues that are passing the first time from dev to QA to Done.
The probem I have is that the workflow keep changing and we can impact scripts
here is would take care to keep old measurement even if we change the workflow.
First workflow : ticket should pass from In Test(Rb) to Tested : once
updated workflow : ticket should pass ftom In Test to Finished
Here is my code but seems not effecient : could you please help optimizing it ?
Sum(
Filter(
-- iterate through issues
Descendants([Issue].CurrentMember, [Issue].[Issue]),
-- filter issues with a transition date from the status
NOT IsEmpty((
[Measures].[Transition from status first date],
[Transition Status].[In Test],
[Time].CurrentHierarchy.DefaultMember
))
AND
DateInPeriod(
[Issue].CurrentHierarchyMember.Get('Resolved at'),
[Time].CurrentHierarchyMember
)
AND
-- only one transition from status
([Measures].[Transitions from status],
[Transition Status].[In Test],
[Time].CurrentHierarchy.DefaultMember) = 1
AND
-- and the transition is to UAT pass
([Measures].[Transitions to status],
[Transition].[In Test => Finished],
[Time].CurrentHierarchy.DefaultMember) > 0
),
([Measures].[Transitions from status issues count],
[Transition].[In Test => Finished])
)
/
Sum(
Filter(
-- iterate through issues
Descendants([Issue].CurrentMember, [Issue].[Issue]),
-- filter issues with a transition date from the status
NOT IsEmpty((
[Measures].[Transition from status first date],
[Transition Status].[In Test],
[Time].CurrentHierarchy.DefaultMember
))
AND
DateInPeriod(
[Issue].CurrentHierarchyMember.Get('Resolved at'),
[Time].CurrentHierarchyMember
)
AND
-- and the transition is to UAT pass
([Measures].[Transitions to status],
[Transition].[In Test => Finished],
[Time].CurrentHierarchy.DefaultMember) > 0
),
([Measures].[Transitions from status issues count],
[Transition].[Transition].[In Test => Finished])
)