This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
I have a matrix that I only want to display the results in column 6 where the result is "0" (zero). Any help would be appreciated.
Solved! Go to Solution.
You can try something like this (if i understand correctly).
NewMeasure = var vResult = [YourMeasure]
Return IF(AND(SELECTEDVALUE(Table[ColumnUsedAsMatrixColumns]) =6, vResult <> 0), BLANK(), vResult)
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Hi @bmarcowka ,
What's your table look like? I did a test. If your table is similar to mine, you can use the function @mahoneypat recommends.
Measure = IF(MAX('Sheet2'[C2])=6&&MAX('Sheet2'[value])<>0,BLANK(),MAX('Sheet2'[value]))If not, please provide me with more details about your table and your problem or share me with your pbix file from your Onedrive for Business.
Hope that's what you were looking for.
Best Regards,
Yuna
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
You can try something like this (if i understand correctly).
NewMeasure = var vResult = [YourMeasure]
Return IF(AND(SELECTEDVALUE(Table[ColumnUsedAsMatrixColumns]) =6, vResult <> 0), BLANK(), vResult)
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 34 | |
| 31 | |
| 25 | |
| 20 | |
| 16 |
| User | Count |
|---|---|
| 61 | |
| 49 | |
| 28 | |
| 23 | |
| 23 |