Hello
I have a report and I want to count the number of Jira tickets that were transferred outside of our Jira group. That is: From an assignee in our group to another assignee (outside of our group).
I have created this custom metric
Filter(
[Assignee].[User].Members,
CoalesceEmpty([Assignee].CurrentMember.Get(‘Groups’), ‘’)
MATCHES ‘.(^|,)(Tribe_Group)($|,).’
),
[Measures].[Transitions from assignee]
But the problem is that eazybi sometimes counts double or triple times if a jira ticket has been transferred between the team member of the same group. (For example for this movement
A–>B–>A–>C it will count 3 times)
Can someone provide an alternative more accurate query?
Thank you for your time
