How do i take the count out of issue properties

[Issue].CurrentHierarchyMember.get(‘defect.’)

how do i take out the count of issues appearing under this property

@rashi0708

Try this formula to count links:

Count(
  [Issue].[Issue].GetMembersByKeys(
    [Issue].CurrentHierarchyMember.get('defect.')
  )
)

Martins / eazyBI