Counting number of assignee under an epic

Hi @HRivest,

You can use the following formula that counts the number of assignees except for the “unassigned”:

Nonzero(Count(
  Filter(Descendants([Assignee].CurrentMember,[Assignee].[User]),
    [Assignee].CurrentHierarchyMember.Name<>'(unassigned)'
    AND
    [Measures].[Issues created]>0
  )
))

Best,
Marita // support@eazybi.com

1 Like