Measure to Count same values in Column

Hello,
I have a table
image

I want to create a Measure which counts same values of Column, like it’s in measure “sum&aggr”(now it’s hardcoded)
image

Hello @cybertachikoma

It seems that you reached out to us directly as well.
In case other eazyBI users are interested in the solution, the formula I have pasted below should return the expected results:

Count(
Filter(
  [Type].[Type].Members,
  [Measures].[Issues created]>0
))

Best wishes,

Elita from support@eazybi.com