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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Dear experts,
I am new to Power BI, and I must admit I've been feeling quite stupid.
I was wondering how I can add a fifth column in this table so that I can find the minimum price among the three suppliers.
Thank you very much!
| Product Name | Supplier 1 | Supplier 2 | Supplier 3 | Lowest price |
| Plug | 50 | 30 | 47 | ? |
| Pick | 5 | 3 | 6 | ? |
| String | 12 | 16 | 18 | ? |
Solved! Go to Solution.
Hi @Anonymous ,
You can unpivot the supplier values:
and this measure:
Hi @Anonymous ,
You can unpivot the supplier values:
and this measure:
Hi @Anonymous
have a look at the great solution by @Zubair_Muhammad here https://community.powerbi.com/t5/Desktop/MIN-with-Multiple-Columns/td-p/369307
Column =
VAR temp = { Table1[Supplier 1], Table1[Supplier 2], Table1[Supplier 3] }
RETURN
MINX ( Temp, [Value] )
Thank you very much!!!
Thank you very very much!
I was wondering if there is an easier way, or if it is better to add an excel table to the model that will already contain the lowest values and their respective suppliers.
Best,
MullerBR
Hi @camargos88 ,
Whether the Table 2 in the following screen shot is your expected result? If yes, please unpivot these suppliers columns first, then create calculated table with the below formula:
PQuotes = SUMMARIZE('Product quote','Product quote'[Product Name],"SupplierL",CALCULATE(MAX('Product quote'[Attribute]),FILTER('Product quote','Product quote'[Product Name]=EARLIER('Product quote'[Product Name])&&'Product quote'[Value]=MIN('Product quote'[Value]))),"Lowest price",MIN('Product quote'[Value]))Best Regards
Rena
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 |
|---|---|
| 103 | |
| 80 | |
| 59 | |
| 51 | |
| 46 |