Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

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

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@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

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@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

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

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

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors