Hello,
I’m trying to figure out how to get issue count which have transitioned “In Testing => Waiting” OR “For Testing => Waiting” based on user who has logged time in the issue. I have “Logged by” and “Issue” as rows and created this custom measure:
Count(
Filter(
Descendants([Issue].Currentmember, [Issue].[Issue]),
[Measures].[Hours spent] > 0
AND
(
NOT IsEmpty((
[Measures].[Transitions to status],
[Transition].[In Testing => Waiting]
))
OR
NOT IsEmpty((
[Measures].[Transitions to status],
[Transition].[For Testing => Waiting]
))
)))
If i remove “Logged by” dimension, then i get overall count, but with it i get 0 on every row.
It looks like i’m missing something, but can’t figure out what. Maybe someone can point me to right direction with this.
Also next there is needed also to count issues which have transitioned “In Testing => Waiting” OR “For Testing => Waiting” more than once.
Br,
Toomas