I need to see who have been assigned to issues

I need a list of all issues that have been assigned to a certain employee, and in the same list see who else have been assigned to it before or after.

Is this possible?

Hi,

We need a custom calculation to generate the list of other assignees of the issue for such a report. The following formula will do that:

Generate(
  Filter([Assignee].[User].Members,
  [Measures].[Transitions to assignee]>0
  AND
  [Measures].[Issue assignee]<>[Assignee].CurrentMember.Name
  ),
  [Assignee].CurrentMember.Name,
  ","
)

Now I can create a report like this to filter issues currently assigned to the user and see the list of other assignees:

Kindly,
Janis, eazyBI support

Thank you, that works :blush::+1: