I needed to see the average closed issues per month against the number of assignees.
Hi,
Try this formula in new calculated measure to return the distinct count of assignees for each period with closed issues.
Sum(
Filter(
DescendantsSet([Assignee].CurrentMember,[Assignee].[User]),
NOT [Assignee].CurrentMember IS [Assignee].[(unassigned)]
),
CASE WHEN
[Measures].[Issues resolved]>0
THEN
1
END
)
Martins / eazyBI
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.