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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

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
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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