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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

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
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

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