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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Good morning
I have 4 columns where I make decisions based on which column has the lowest value. I currently use the Match() function within Excel to do this, however, I am moving into a SQL environment and connecting my new database to PowerBi. How can I replicate the same functionality within Powerbi, in that I can identify which column has the lowest value? The returned value can be the column name or a numerical value.
Any assistance is greatly appreciated.
Allan
Solved! Go to Solution.
Hi @Anonymous ,
I'd suggest to unpivot the columns first as they suggested here:
Solved: Minimum Value across multiple columns - Microsoft Power BI Community
Here a quick example:
Then you unvpivot all columns that you wish to compare with each other to find the minimum value:
You would end up with something like this:
Lastly, create a measure in DAX like below:
ResultMeasure = VAR _minValue = CALCULATE ( MIN ( Table[Value] ), Table[Value] <> 0 ) RETURN CONCATENATEX ( FILTER ( Table, Table[Value] = _minValue ), Table45[Attribute.1], ", " )
And you get the following result:
Let me know if this helps 🙂
/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/
Did I answer your question❓➡️ Please, mark my post as a solution ✔️ |
Also happily accepting Kudos 🙂 |
Feel free to connect with me on LinkedIn! | |
#proudtobeasuperuser | |
Hi @Anonymous ,
I'd suggest to unpivot the columns first as they suggested here:
Solved: Minimum Value across multiple columns - Microsoft Power BI Community
Here a quick example:
Then you unvpivot all columns that you wish to compare with each other to find the minimum value:
You would end up with something like this:
Lastly, create a measure in DAX like below:
ResultMeasure = VAR _minValue = CALCULATE ( MIN ( Table[Value] ), Table[Value] <> 0 ) RETURN CONCATENATEX ( FILTER ( Table, Table[Value] = _minValue ), Table45[Attribute.1], ", " )
And you get the following result:
Let me know if this helps 🙂
/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/
Did I answer your question❓➡️ Please, mark my post as a solution ✔️ |
Also happily accepting Kudos 🙂 |
Feel free to connect with me on LinkedIn! | |
#proudtobeasuperuser | |
Thank you so much for the concise answer and it is greatly appreciated. I will build this in and get to work.
Weirdly excited to try this out lol
Cheers
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
12 | |
11 | |
10 | |
9 | |
8 |