The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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.
User | Count |
---|---|
84 | |
83 | |
34 | |
34 | |
32 |
User | Count |
---|---|
94 | |
79 | |
62 | |
54 | |
51 |