Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
Hello guys!
I need a lot of help with the following:
In an matrix, I put the priority as a criterion and the rankings as follows in the image:
In this case, there is also a priority "Critical", but depending on what was filtered in "Final Group", this priority does not appear as it has no value.
I would like to know if it is possible to make it so that even having no value, it is possible to show the priority "Critical" with a value of zero.
I don't know if I made myself clear, I tried to explain as best I could!
Thanks for your attention in advance.
Solved! Go to Solution.
Hi @avitoriasrocha !
Try an if condition like:
IF(
value = BLANK(),
0,
value
)
Let me know if that helps!
You can try the following measure:
Show 0 if critical =
IF (
SELECTEDVALUE ( 'Priority Table'[Priority] ) = "Critical",
COALESCE ( [Your measure], 0 ),
[Your measure]
)
Proud to be a Super User!
Paul on Linkedin.
I'm answering from my phone so I'll do my best to explain without screenshots.
One way to do it...
Let me know if that helps.
| Have I solved your problem? Please click Accept as Solution so I don't keep coming back to this post, oh yeah, others may find it useful also ;). |
Hi @avitoriasrocha !
Try an if condition like:
IF(
value = BLANK(),
0,
value
)
Let me know if that helps!
I found an even simpler solution here
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 29 | |
| 28 | |
| 20 | |
| 20 | |
| 19 |
| User | Count |
|---|---|
| 35 | |
| 28 | |
| 20 | |
| 18 | |
| 17 |