Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreShape the future of the Fabric Community! Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions. Take survey.
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.
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Check out the November 2024 Power BI update to learn about new features.
User | Count |
---|---|
91 | |
86 | |
83 | |
76 | |
49 |
User | Count |
---|---|
145 | |
140 | |
109 | |
68 | |
55 |