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
Anonymous
Not applicable

Creating a weight/cost ratio measure

Hi

 

I'm pretty awful with measures, so while I don't think this is particularly difficult I'm struggling to write it out. I have data across two tables, Orders and Shipments. A shipment is made up of one or more orders, so in this example Orders A and B make up Shipment 0001.

 

OrdersWeight
Order A25
Order B30

 

ShipmentsTotal WeightTotal Cost (USD)
Shipment 000155200

 

From this I need to find the cost per order:

 

Shipments[Total Cost] / Shipments[Total Weight] * Orders[Weight]

Order A Cost = 200 / 55 * 25 = $90.91

 

Many thanks!

1 ACCEPTED SOLUTION
V-lianl-msft
Community Support
Community Support

Hello @Welsh_Will ,

I created two test tables with one or many relationships based on shipment fields.

V-lianl-msft_0-1603089296655.png

Next, create a measure like this:

Measure = var per_weight=
CALCULATE(DIVIDE(MAX('Table (2)'[Cost]),MAX('Table (2)'[weight])))
return CALCULATE(per_weight*MAX('Table'[Weight]))

V-lianl-msft_1-1603089367532.png

.pbix example

Best regards
Liang
If this post helps, then consider Accept it as the solution to help other members find it faster.

View solution in original post

3 REPLIES 3
V-lianl-msft
Community Support
Community Support

Hello @Welsh_Will ,

I created two test tables with one or many relationships based on shipment fields.

V-lianl-msft_0-1603089296655.png

Next, create a measure like this:

Measure = var per_weight=
CALCULATE(DIVIDE(MAX('Table (2)'[Cost]),MAX('Table (2)'[weight])))
return CALCULATE(per_weight*MAX('Table'[Weight]))

V-lianl-msft_1-1603089367532.png

.pbix example

Best regards
Liang
If this post helps, then consider Accept it as the solution to help other members find it faster.

Anonymous
Not applicable

Thank you!

DataInsights
Super User
Super User

@Anonymous,

 

How are orders and shipments associated in the data model? Does the Orders table have a column for shipment number?





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




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.