Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have a table with (among other things) colomn with ID, value and hour
I'm looking for a way to sum the value column into a single row per id and hour. So that I can make some further calculations based on this summarized value.
Example of how data is now:
ID | Hour | Value |
1 | 3 | 5 |
1 | 3 | 10 |
2 | 3 | 7 |
2 | 3 | 3 |
3 | 3 | 4 |
Expected results:
ID | Hour | Value |
1 | 3 | 15 |
2 | 3 | 10 |
3 | 3 | 4 |
Solved! Go to Solution.
Did a referencetable in transform data view, and grouped by id, hour etc
Can you show the DAX statement in a post?
Did a referencetable in transform data view, and grouped by id, hour etc
create a measure:
TotalHours = SUM( 'tableName'[Value])
Then add this measure to the table
My issue is then when I try to make the other measures that are based on this, they won't calculate correcty.
My next calcualtion I want to count the number of hours/(row) when the value is >20. Which I've encountered issues with when doing it this way.