Get Total Time in Workflow Category In Progress

I have a use case where a user wants to capture the Story Points and total number of days in Workflow Category “In Progress”. These would be active issues

| Issue | Original Story Points | Days In Progress|

Hi @briantaylor

For days in Progress category calculation, you could try the following tuple when creating a new calculated measure:

(
  [Measures].[Days in transition status],
  [Transition Status.Category].[In Progress] 
)

Martins / eazyBI support