Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
125 | |
111 | |
73 | |
65 | |
46 |