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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It 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
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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