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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Chanleakna123
Post Prodigy
Post Prodigy

Sum Based on Group

hi , 

I have no clue how to Sum each column based on Group, Total Work Hours in MN is where i calculated on Excel Column , 

For Hualage Trucks : Work Hours in MN + Stop Hours in MN 

For Key Account trucks : Idling Hours in MN + Work Hours in MN 

 

How to acheive this on Power BI ? 

 

Groups (groups)Idling Hours in MNWork Hours in MNStop Hours in MNTotal Work Hours In MN
Haulage Trucks30772116888
Haulage Trucks3211491821331
Key Account Trucks53189715242
Key Account Trucks1364061008542
1 ACCEPTED SOLUTION
d_gosbell
Super User
Super User

You could do this by using SUMX to generate a row context, then testing for the value of the Group using an IF or SWITCH statement.

 

So something like the following should work:

 

SUMX( table1 , 
SWITCH( table1[Groups (groups)]
  , "Haulage Trucks", table1[Work Hours in MN] + table1[Stop Hours in MN] 
  , "Key Accounts Trucks",  table1[Idling Hours in MN] + table1[Work Hours in MN] 
  )
)

View solution in original post

1 REPLY 1
d_gosbell
Super User
Super User

You could do this by using SUMX to generate a row context, then testing for the value of the Group using an IF or SWITCH statement.

 

So something like the following should work:

 

SUMX( table1 , 
SWITCH( table1[Groups (groups)]
  , "Haulage Trucks", table1[Work Hours in MN] + table1[Stop Hours in MN] 
  , "Key Accounts Trucks",  table1[Idling Hours in MN] + table1[Work Hours in MN] 
  )
)

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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