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
SMG
Frequent Visitor

Aggregating values in one column grouped by a specific values in another column

I have a set of shipment charges by shipment that I need to aggregate to get the shipment's total revenue or by revenue component

 

Here is an example:

Shipment_NbrRevenue TypeRevenueWeight
1602530Fuel90122.3
1602530Misc82122.3
1602530Documents68122.3
1602530Handling66122.3
1602530Freight89122.3
1997544Fuel9887.6
1997544Misc5687.6
1997544Documents8587.6
1997544Handling9487.6
1997544Freight6787.6
1226866Fuel82754.3
1226866Misc87754.3
1226866Documents76754.3
1226866Handling90754.3
1226866Freight74754.3

 

In the table, the Shipment Number is the unique identifier. Each shipment has multiple types of charges and I want to show dynamically, what each shipment per weight breakdown is by all or some of the charge types.

 

The kicker is that the weights are duplicated by shipment. 

Here is how Ideally I could show a visual of the data:

All charge types selected:

Shipment_NbrTotal RevenueWeightRevenue by Weight
1602530 $395.00122.3 $3.23
1997544 $400.0087.6 $4.57
1226866 $409.00754.3 $0.54


However, if in the slicer, I select only Freight, I should see this:

Shipment_NbrTotal RevenueWeightRevenue by Weight
1602530 $89.00122.3 $3.23
1997544 $67.0087.6 $4.57
1226866 $74.00754.3 $0.54




 

1 ACCEPTED SOLUTION
Fowmy
Super User
Super User

@SMG 

Here are the three measures:

Total Revenue = SUM( Table16[Revenue] )
S_Weight = MAX( Table16[Weight] )
Revenue by Weigh = 
DIVIDE( 
    CALCULATE(
        [Total Revenue],
        REMOVEFILTERS( Table16[Revenue Type] )
    ),    
    CALCULATE([S_Weight])
)
   

Fowmy_0-1701978471245.png

 



Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

2 REPLIES 2
Fowmy
Super User
Super User

@SMG 

Here are the three measures:

Total Revenue = SUM( Table16[Revenue] )
S_Weight = MAX( Table16[Weight] )
Revenue by Weigh = 
DIVIDE( 
    CALCULATE(
        [Total Revenue],
        REMOVEFILTERS( Table16[Revenue Type] )
    ),    
    CALCULATE([S_Weight])
)
   

Fowmy_0-1701978471245.png

 



Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

SMG
Frequent Visitor

Thank you!

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors