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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
Anonymous
Not applicable

Trying to Calculate pounds shipped

Hello Everyone,

 

I currently have a table that has SKUs and the weight in lbs for each particular unit. That table is then linked to a table of delivery information by SKUs summing how many units were shipped. I am having trouble getting a formula to multiple the two to figure out the total untis shipped. I thought it would be LBS. * Delivered but it is not working

 

lpre30_0-1652475694505.png

lpre30_1-1652475710499.png

 

 

1 ACCEPTED SOLUTION
OwenAuger
Super User
Super User

Hello @Anonymous 

For this calculation, I would suggest iterating over the values of 'Manual SKU Table'[LBS.], and for each value of LBS. multiply by the related sum of Delivered, then sum.

 

(Below I've used the table & column names from your screenshot - correct if needed)

 

I would suggest first creating a Units Shipped measure:

Units Shipped = 
SUM ( 'Query 1 2'[Delivered] )

 

Then you can create a LBS Shipped measure looking something like either of these :

LBS Shipped = 
SUMX ( 
    VALUES ( 'Manual SKU Table'[LBS.] ),
    'Manual SKU Table'[LBS.] * [Units Shipped]
)

or

LBS Shipped =
SUMX (
    SUMMARIZE ( 'Query 1 2', 'Manual SKU Table'[LBS.] ),
    'Manual SKU Table'[LBS.] * [Units Shipped]
)

 

Does this work at your end?

 

Regards,

Owen


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
LinkedIn

View solution in original post

1 REPLY 1
OwenAuger
Super User
Super User

Hello @Anonymous 

For this calculation, I would suggest iterating over the values of 'Manual SKU Table'[LBS.], and for each value of LBS. multiply by the related sum of Delivered, then sum.

 

(Below I've used the table & column names from your screenshot - correct if needed)

 

I would suggest first creating a Units Shipped measure:

Units Shipped = 
SUM ( 'Query 1 2'[Delivered] )

 

Then you can create a LBS Shipped measure looking something like either of these :

LBS Shipped = 
SUMX ( 
    VALUES ( 'Manual SKU Table'[LBS.] ),
    'Manual SKU Table'[LBS.] * [Units Shipped]
)

or

LBS Shipped =
SUMX (
    SUMMARIZE ( 'Query 1 2', 'Manual SKU Table'[LBS.] ),
    'Manual SKU Table'[LBS.] * [Units Shipped]
)

 

Does this work at your end?

 

Regards,

Owen


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
LinkedIn

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.