Create a tabular report for gathering the list and amount of issues updated by a user in a period

Hi,

There might be no complete solution for this use case, especially if you are on Jira Server or Datacenter. You can find a solution to a similar use case with a Javascript-calculated custom field in this community post: Count User interaction with Issue - #2 by Daniel_Luevano.

This Javascript code is designed for Jira Cloud. eazyBI for Jira Datacenter collects much less information about the issue change history, so the data will be incomplete. If you still try the solution on Datacenter, replace the accountID with the name in the code.

This solution gives the activity count in the period. An additional custom measures is needed to create a distinct issue count:

NonZero(Count(
  Filter(Descendants([Issue].CurrentMember,[Issue].[Issue]),
  [Measures].[Activity History]>0
  )
))

Kindly,
Janis, eazyBI support