Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

Calculate sum of values by grouping ID and Hours

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:

 

IDHourValue
135
1310
237
233
334

 

Expected results:

 

IDHourValue
1315
2310
334
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Did a referencetable in transform data view, and grouped by id, hour etc

View solution in original post

5 REPLIES 5
Anonymous
Not applicable

Can you show the DAX statement in a post?

Anonymous
Not applicable

Measure1 = CALCULATE(SUM(Table1[Value]), Table1[Filtercolumn1] <> BLANK(),Table1[Filtercolumn2] = "ABC")
 
Measure2 >20 = CALCULATECOUNT(Table1[Hour]), FILTER(Table1, [Measure1]>20))
 
The problem with measue2 is that the result is way lower than what I expected
 
Anonymous
Not applicable

Did a referencetable in transform data view, and grouped by id, hour etc

Anonymous
Not applicable

create a measure:

TotalHours = SUM( 'tableName'[Value])

Then add this measure to the table

Anonymous
Not applicable

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. 

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.