Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 58 | |
| 45 | |
| 42 | |
| 21 | |
| 18 |