March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I have hourly readings as below.
When I put them into a table in PowerBI it only gives the first figure from the day:
I need it to aggregate all 24 November 1 values into November 1.
@Anonymous 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:
Result is this:
Hi @Anonymous ,
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.
Hi @Anonymous ,
Below is my table:
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:
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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
133 | |
91 | |
88 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
73 | |
68 |