Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
How we can display 0 on Power bi Matrix Column value when there's some data missing in the data table
cadidate | vote | group |
a | 5% | 0-10% |
c | 10% | 0-10% |
b | 15% | 11-20% |
w | 9% | 0-10% |
c | 39% | 31-40% |
x | 45% | 41-50% |
d | 33% | 31-40% |
getting answer | COUNT |
0-10% | 3 |
11-20% | 1 |
31-40% | 2 |
41-50% | 1 |
TOTAL | 7 |
Needed Answer | COUNT |
0-10% | 3 |
11-20% | 1 |
21-30% | 0 |
31-40% | 2 |
41-50% | 1 |
TOTAL | 7 |
Solved! Go to Solution.
You will have to create a new table with the groups you want as there are no references in the table for Power BI to add a 0 agains it.
You can then create a relationship between the two tables like this
The next step is to create a measure that will replace the blanks with 0.
Measure =
VAR total_rows =
COUNTROWS('Group_data')
Return
COALESCE(total_rows, 0)
I have called my table 'Group_data'. You will need to replace the bit in green with the name of your table.
You will then need to use this measure along with the column in the new table you have created in a matix
In the visualisation pane click on the drop down
then make sure 'Show items with no data' is selected.
Not exactly working can we provide an example for better understanding. Thank you
You will have to create a new table with the groups you want as there are no references in the table for Power BI to add a 0 agains it.
You can then create a relationship between the two tables like this
The next step is to create a measure that will replace the blanks with 0.
Measure =
VAR total_rows =
COUNTROWS('Group_data')
Return
COALESCE(total_rows, 0)
I have called my table 'Group_data'. You will need to replace the bit in green with the name of your table.
You will then need to use this measure along with the column in the new table you have created in a matix
Thanks the visual explanation is really helpfull
User | Count |
---|---|
134 | |
74 | |
72 | |
58 | |
54 |
User | Count |
---|---|
194 | |
95 | |
65 | |
62 | |
53 |