Case Study: Supply Chain Analytics in Power BI
Nick Switzer
Analytics Lead
Everyone has a plan until they get punched in the mouth. -Mike Tyson
Quote preparation and ingestion takes:
Column name | Description |
---|---|
Part_Number | An ID of the Part Number Quoted |
Supplier | Name of the supplier that submitted the quote |
Volume | Minimum production volume for the quoted price |
Unit_Cost | Quoted cost per unit |
Non_recurring_expenses | One time expenses required for the production volume |
Supplier | Part_Number | Volume | Unit_Cost | Non_recurring_expenses |
---|---|---|---|---|
Supplier_XYZ | Part_A | 1000 | $12.90 | $2000 |
Supplier_XYZ | Part_A | 5000 | $9.78 | $3000 |
Supplier_MNO | Part_A | 1000 | $5.90 | $6000 |
MINX(<table>, <expression>)
returns the minimum value of an expression computed for each row of the table you pass it.
Function to use
Full Cost (Measure) = MINX(<table>, < expression>)
Measure structure
Full Cost (Measure) = MINX(FILTER(<table>,<filter>), <Full Cost formula>)
Case Study: Supply Chain Analytics in Power BI