Hi There,
I would like to calculate the standard deviation of issue cycles (we have ‘new’, ‘active’ and ‘waiting’ mapped) and plot on a time series chart. I would use this to show the +2 and -2 95% bands around the precalculated mean.
Hi,
how do I change the formula if I want to create a deviation for an average cycle time which goes as follows:
CASE WHEN
[Measures].[Issues resolved]>0
THEN
[Measures].[Progress days of resolved issues]
/
[Measures].[Issues resolved]
END
Try creating calcualted measure using this formula:
CASE WHEN
[Measures].[Issues resolved]>0
THEN
StDev(
Filter(
DescendantsSet([Issue].CurrentMember,[Issue].[Issue]),
DateInPeriod(
[Measures].[Issue resolution date],
[Time].CurrentHierarchyMember
)
AND
[Measures].[Issues resolved]>0
),
[Measures].[Progress days of resolved issues]
)
END