Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
How to create a non-zero/non-blank minimum across multiple columns?
So, the sample data and expected minimum is:
A|B|C|D|E|Min
1|0|4|2|3|1
2|3|5| |1|1
2| |0|5|1|1
I already tried nested MIN() but couldn't figure out how to put a not equals 0 filter in it. It would be great if you could help me out in this.
Thanks,
Soubhik.
Solved! Go to Solution.
Add the following calculated column to your table:
MinColumn =
MINX( FILTER({[A],[B],[C],[D],[E]},[Value] > 0 ),[Value] )
________________________
If my answer was helpful, please consider Accept it as the solution to help the other members find it
Click on the Thumbs-Up icon if you like this reply 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Add the following calculated column to your table:
MinColumn =
MINX( FILTER({[A],[B],[C],[D],[E]},[Value] > 0 ),[Value] )
________________________
If my answer was helpful, please consider Accept it as the solution to help the other members find it
Click on the Thumbs-Up icon if you like this reply 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
65 | |
63 | |
52 | |
37 | |
36 |
User | Count |
---|---|
82 | |
66 | |
61 | |
46 | |
45 |