I would like to count number of issue in each transition status.
The below code is not working properly. It is not only counting sub-task while I am looking for parent tasks but also counting in each status is wrong.
Count(
Filter(
DescendantsSet([Issue].CurrentHierarchyMember,[Issue].[Issue]),
[Measures].[Transitions to status]>0
OR
[Measures].[Issues history]>0
)
)