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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
akwang
Helper II
Helper II

Measure from lookup table

Hi I have two tables one is my fact tabe which has qty of items sold and another table which has the net weight for each product. I want to calculate the net weght of product sold by QTY * Net wgt. Currently I use the RELATED function to import from the lookup table to another column, but is their a better solution?Screenshot_2.jpg

1 ACCEPTED SOLUTION
Anonymous
Not applicable

You could avoid using a calculated column with the following measure:

 

Net Weight Sold =
SUMX (
    tbl_SAP_Data,
    tbl_SAP_Data[Net Qty] * RELATED ( tbl_Prod_Description[Net Weight (g)] )
)

This measure will iterate over each row in the tbl_SAP_Data table.  In each row, it will multiple the [Net Qty] column by the appropriate [Net Weight (g)] column from your lookup table, thanks to using RELATED() within the row context created by iterating with SUMX.

View solution in original post

1 REPLY 1
Anonymous
Not applicable

You could avoid using a calculated column with the following measure:

 

Net Weight Sold =
SUMX (
    tbl_SAP_Data,
    tbl_SAP_Data[Net Qty] * RELATED ( tbl_Prod_Description[Net Weight (g)] )
)

This measure will iterate over each row in the tbl_SAP_Data table.  In each row, it will multiple the [Net Qty] column by the appropriate [Net Weight (g)] column from your lookup table, thanks to using RELATED() within the row context created by iterating with SUMX.

Helpful resources

Announcements
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.