Show name of people that issue resolved

Hi madooooooo,
Welcome to the eazyBI community!

If you are looking for a list of all assignees who have worked on the issue, you can create a new calculated measure with the following formula:

Generate(
--go through all Assignee users
Filter(
[Assignee].[User].Members,
--check wheather user was assigned to issue at some point
([Measures].[Transitions to assignee],
[Time].CurrentHierarchy.DefaultMember) > 0 ),
--get assignee names separated by comma
[Assignee].CurrentMember.Name,
","
)

If you want to see only resolved issues, then use the measure “Issues resolved”, click on the column header, and add a row filter > 0 . You can later remove this measure, but the filter will stay.

If you are looking for the assignee list in specific status, you might find this community post useful:

I hope this helps.

Kindly,
Ilze

1 Like