Forum Discussion

jaduncan0515's avatar
jaduncan0515
Frequent Visitor
2 years ago
Solved

How do I optimize a supplier portfolio within the US?

I have a table with the below fields: Supplier Name State % Outsourced Price   I need to find out what the fewest number of suppliers to cover all US states with the lowest price and lowe...
  • Anonymous's avatar
    Anonymous
    2 years ago

    Hi jaduncan0515 ,

     

    (1) We can create measures.

    Min_price = CALCULATE(MIN('Table'[Price]),FILTER(ALLSELECTED('Table'),'Table'[State]=MAX('Table'[State])))
    Min_outourced = CALCULATE(MIN('Table'[Outsourced %]),FILTER(ALLSELECTED('Table'),'Table'[State]=MAX('Table'[State])))
    Vendor_Name = CALCULATE(MAX('Table'[Vendor Name]),FILTER(ALLSELECTED('Table'),[State]=MAX('Table'[State]) && [Price]=[Min_price] && [Outsourced %]=[Min_outourced]))

    (2) We can create a table.

    Table 2 = SUMMARIZE(ALLSELECTED('Table'),[State],"min price",[Min_price],"min outourced",[Min_outourced],"vendor name",[Vendor_Name])

    (3) Then the result is as follows.

     

     

    Best Regards,

    Neeko Tang

    If this post  helps, then please consider Accept it as the solution  to help the other members find it more quickly.