Hi,
I built a report showing the overall number of resolved tickets per month and the number of said tickets which went into a specific status during their life cycle. I used the information given here as start and several community posts to achieve this. In order to get the number of resolved tickets which have been in a special status before I use:
NonZero(Count(
Filter(Descendants([Issue].CurrentMember,[Issue].[Issue]),
[Measures].[Issues resolved]>0
AND
([Measures].[Transitions to status],
[Transition Status].[Special Status],
[Time].CurrentHierarchy.DefaultMember)>0
)
))
I also get the number total resolved tickets with standard measure, the difference between those two should be the number of resolved tickets which never went to Special Status.
Since I do not want to count resolutions like Duplicate or Cancelled I added a page and chose multiple fitting resolutions. I noticed that I have to include (unresolved) to get correct numbers as the majority of “special status tickets” is not counted otherwise. These tickets clearly do have a resolution date and are resolved. Why is that? What am I missing here?