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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

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
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors