Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Count instances in specific intervals when parameter higher than a value

Hi all,

 

Hopefully this is quite straightforward, but I can't seem to be able to find the solution to it.

I have a parameter that changes based on different time bucket columns (1hr column, 15min column etc.)

 

What I would like to do is create a measure that will calculate the number of instances where the sum of the parameter on a 15min interval is above 25.

 

My data look like this on a pivot

 

 10:00 - 10:1510:15 -10:3010:30 - 10:4510:45 - 11:00.........
Employer 1 15 1925 15   
Employer 222554022   
Employer 330402630   
Employer 445204045   
Measure Required COUNT (Above 25)2342   

 

What I would like to have as a final product is the below.

 

 10:00 - 10:1510:15 -10:3010:30 - 10:4510:45 - 11:00.........
Measure Required COUNT (Above 25)2342   

 

Any idea?

 

Thanks in advance

  • Anonymous , Try a measure like

    countx(filter(values(Table[Employee]), [Count measure] >1 ), [Employee])

     

    For below visual , you can use show on row in Matrix

2 Replies

  • Anonymous , Try a measure like

    countx(filter(values(Table[Employee]), [Count measure] >1 ), [Employee])

     

    For below visual , you can use show on row in Matrix

    • Anonymous's avatar
      Anonymous
      Not applicable

      Thanks a lot amitchandak ! That worked exactly the way I needed !!