Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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 lowest % outsourced in each state. What is the best way going about this?
I'd like to be able to show this in a table and a map visualization.
Thanks in advance!
Solved! Go to Solution.
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.
Hi @jaduncan0515 ,
According to your description, here are my steps you can follow as a solution.
(1) This is my test data.
(2) We can create a state table that includes all states.
Sample data:
(3)We can create a calculated column.
Flag = var _a=COUNTROWS(ALL('State'))
var _b=COUNTROWS(FILTER(ALL('Table'),'Table'[Supplier Name]=EARLIER('Table'[Supplier Name])))
RETURN IF(_a=_b,1,0)
(4) We can create measures.
Sum_outourced = CALCULATE(SUM('Table'[% Outsourced]),ALLEXCEPT('Table','Table'[Supplier Name]))
Sum_price = CALCULATE(SUM('Table'[Price]),ALLEXCEPT('Table','Table'[Supplier Name]))
Count = var a=MINX(FILTER(ALLSELECTED('Table'),[Flag]=1),[Sum_price])
var b=MINX(FILTER(ALLSELECTED('Table'),[Flag]=1),[Sum_outourced])
return CALCULATE(DISTINCTCOUNT('Table'[Supplier Name]),FILTER('Table',[Flag]=1&&[Sum_outourced]=b&&[Sum_price]=a))
(5) Then the result is as follows.
If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.
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.
Thank you. That is close. What I failed to mention is that I don't need the vendor to cover the whole US, I need an optimized list containing the fewest number vendors that will cover the US combined at with the lowest price and outsourced %.
The forum will not allow me to upload files, so I've put a link to a google sheet below of some sample data.
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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
User | Count |
---|---|
126 | |
78 | |
78 | |
60 | |
51 |
User | Count |
---|---|
164 | |
84 | |
68 | |
68 | |
58 |