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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
Barrettone
Helper I
Helper I

Summarise Hourly Values

I have hourly readings as below. 

Barrettone_0-1701277546520.png

When I put them into a table in PowerBI it only gives the first figure from the day:

Barrettone_2-1701277714912.png

 

I need it to aggregate all 24 November 1 values into November 1.

3 REPLIES 3
Barrettone
Helper I
Helper I

@v-xiandat-msft Thank you for replying,

 

When I put that in, I am unable to choose [date].[day] from my date column. Is that because it is not a date heirarchy? 


DAX is this: 

Gas_Day_Sum = CALCULATE(
     SUM(Gas_Consumption[Reading (kWh)]),
     ALLEXCEPT(Gas_Consumption,Gas_Consumption[Date (Period Beginning)])
   )

Result is this:

Barrettone_0-1701685241061.png

 

Hi @Barrettone ,

You can try to create a Calculated columns.

Best Regards,

Xianda Tang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

v-xiandat-msft
Community Support
Community Support

Hi @Barrettone ,

Below is my table:

vxiandatmsft_0-1701653349684.png

The following DAX might work for you:

Measure1 = 
   CALCULATE(
     SUM('Table'[Reading]),
     ALLEXCEPT('Table','Table'[Date].[Day])
   )

The final output is shown in the following figure:

vxiandatmsft_1-1701653423601.png

Best Regards,

Xianda Tang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.