Issues that passed the status

I need to filter all issues that have already been closed and that have passed the In Test status.

I tried this way but without success:

Case when
  [Transition Status].[Em Testes] > 0
Then
  [Measures].[Issues resolved]
End

or

Filter(
[Measures].[Issues resolved],
([Transition Status].[Em Testes]>0 )
)

Hi @michetti

Welcome to the eazyBI community!

To count closed issues having passed “In Test” status, you may use a tuple to count issues transited to status In Test and currently are in status “Closed”.

([Status].[Closed],
 [Measures].[Transitions to status issues count],
 [Transition Status].[In Test])

Best,
Ilze, support@eazybi.com