I am trying to create a new calculated measure which should return me the number of tickets moved to particular status from another status. I have created a formula but its not working and returning me a blank field.
Sum(
Filter(
Descendants([Issue].CurrentMember, [Issue].[Issue]),
(
[Measures].[Transition from status] = “Dev Complete” OR
[Measures].[Transition from status] = “In development” OR
[Measures].[Transition from status] = “Code Review” OR
[Measures].[Transition from status] = “Ready to verify” OR
[Measures].[Transition from status] = “In QA (UAT)” OR
[Measures].[Transition from status] = “Complete (Dev/QA)”
)
AND
[Measures].[Transition to status] = “In QA (Stage)”
),
[Measures].[Transitions to status]
)
Try putting Dimension Status in Colums, in Rows Issues and as Measure [Measure].[Transition from Status]
Hide empty and remove the transitions you don’t want.
@_P3
This way is including some extra records as well for example : in development status showing the records for those cases as well when dev himself moved it but i want to consider only those in development records that were moved by QA. Thus i want to consider only those in development records that were moved to “In development” status from “QA Stage”
The suggested approach for the solution is on the right track.
The actual formula might depend on how your report is designed. So, please contact eazyBI support for further guidance. Do not forget to send the report definition and a screenshot of the report you have.