Dear all,
I want to create meassures to count how many issues that have been assigned to each users so i create this formula called “Number of Task”
Aggregate(
{
[Issue Type].[Task],
[Issue Type].[Sub-task],
[Issue Type].[Sub-task Bug],
[Issue Type].[Bug]
},
([Measures].[Distinct Assignees per Issue],
[Transition Field].[Assignee])
)
and the Measures Distinct Assignees per Issue formula is
NonZero(Count(
Filter(
Descendants([Issue].CurrentMember, [Issue].[Issue]),
[Measures].[Transitions to Assignee] > 0
)
))
and when i run the formula it shows an error
how to solve this error?
Thankyou