This is my user defined measure.
(([Project].[Hotfix].[API]))
[Measures].[Open issues]
Except(
[Status].[Status].Members,
[Status].[Cancelled]
[Status].[Done]
)
I have my report broken down by month and the results are only showing what issues were opened with the defined component in the given month rather than the total amount of issues.
I’m trying to build a Kanban report that shows the total issues by component and how many my team has completed in a given month.