How to get assignee for particular period(eg. Last Month,Last Year)

Hi ,

I want to see a Report/Table to show the issue assignee for particular period or range of dates. Example (Assignee of the ticket during January or before 3 months etc)

How do we get this report in eazyBI. Could you please help on this?

Regards,
Tamil

@ nauris.malitis Could you please help on this?

Hi @Tamil,

You could use a similar approach as described in this post: How to list all assignees of an issue - #2 by zane.baranovska. I adopted the formula to show all assignees during the selected period for issues that had assignee changes:

Here is the formula:

Generate(
  --go through all Assignee users
  Filter(
    [Assignee].[User].Members,
    --check wheather user was assignee of the issue during selected period
    NOT IsEmpty([Measures].[Issues history]) ),
  --get assignee names separated by comma
  [Assignee].CurrentMember.Name,
  ","
)

Lauma / support@eazybi.com