Issues Created Count by Status Category?

Hi! Is there a way to create a calculated member in the measures dimension to count the number of issues in specific status categories?

I’m avoiding using the Status as a page to filter by as it times out my report.

Looking to include Count of issues in To Do and In Progress.

Hi @julia_lam

Yes, you may create a calculated measure (in Measure), where you would sum issues count over the set of statuses or status categories:

Sum(
 {[Status.Category].[To Do],
  [Status.Category].[In Progress]},
[Measures].[Issues created]
)

Best,
Ilze, support@eazybi.com

Thank you @ilze.leite !