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

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

Reply
SerenellaWonder
Frequent Visitor

Calculate calls from range of hours

Hi, i have one column with hours from pbx report and i have 24 hour format from 00:00:00 to 23:59:00. I need to extract only hours from 09:00:00 to 11:00:00 and 11:01:00 to 13:00:00 and 14:30:00 to 17:30:00 and for this range i need to calculate the ID calls in ID column...this report is the count of calls for hours range...

1 ACCEPTED SOLUTION
v-juanli-msft
Community Support
Community Support

Hi @SerenellaWonder 

Create a table, then create a measure

Capture2.JPG

Measure =
CALCULATE (
    COUNT ( Sheet1[id] ),
    FILTER (
        ALL ( Sheet1 ),
        MAX ( 'Table'[period start] ) <= Sheet1[Time.1]
            && MAX ( 'Table'[period end] ) >= Sheet1[Time.1]
    )
)

Capture1.JPG

 

Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-juanli-msft
Community Support
Community Support

Hi @SerenellaWonder 

Create a table, then create a measure

Capture2.JPG

Measure =
CALCULATE (
    COUNT ( Sheet1[id] ),
    FILTER (
        ALL ( Sheet1 ),
        MAX ( 'Table'[period start] ) <= Sheet1[Time.1]
            && MAX ( 'Table'[period end] ) >= Sheet1[Time.1]
    )
)

Capture1.JPG

 

Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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 Kudoed Authors