Hi,
I am trying to get a unique count of transitions to status for multiple transitions (no duplicates). Using:
[Transition Status].[Done] + [Transition Status].[Production Ready] is producing results with a count of 2 for items that were in both of these statuses. I only want to count 1 of them in the results.
I tried this MDX, modified based on a search of previous questions, but it is not working. I am using this as a custom measure in Transition Status.
Count(
Filter(
–go through individual issues
Descendants([Transition Status].CurrentHierarchyMember,[Transition Status].[Transition Status]),
–for each issue validate both criteria
[Transition Status].[Done] > 0 OR
[Transition Status].[Closed] > 0
)
)
Thank you