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
AV_04
Helper I
Helper I

Sum based on hours

Hi,

 

I have a requirement to find the sum of values in the forcasted next 4 hours. Here's how the sample data looks like

 

DateHourValues
26/4/202222:0020
27/4/20220:0030
26/4/202223:0010
26/4/202221:002
27/4/20221:0050
27/4/20222:0070

 

I need to sum the values from 21:00 of 26th april to 00:00 of 27th april. Can someone help me with the measure? 

 

Thank you,

AV

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@AV_04 , if hour is in time format , create a date time field

 

Dateime  = [Date] +[time]

 

A new measure  =

 

calculate(sum(Table[Value]), filter(Table, Table[DateTime]  >= now()  && Table[DateTime]  <= now() +time(4,0,0) ) )

 

In place of now, you can also use selected date and time too

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
AV_04
Helper I
Helper I

Thank you, I made some twerks to the above measure and was able to get my requirement. Thank you 🙂

amitchandak
Super User
Super User

@AV_04 , if hour is in time format , create a date time field

 

Dateime  = [Date] +[time]

 

A new measure  =

 

calculate(sum(Table[Value]), filter(Table, Table[DateTime]  >= now()  && Table[DateTime]  <= now() +time(4,0,0) ) )

 

In place of now, you can also use selected date and time too

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

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

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!

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