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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello Power BI community,
I have Ticket table with 3 columns, "Component", "Status" and "Week Number".
And I created a matrix in Power BI to show number of tickets(count rows) based on Status and Week Number as a following picture.
But the problem is that I want to show all status (open, in progress, close) including zero like this.
Not only matrix, charts cannot show all status (including zero) too.
Does anyone have any suggestions on this?
Please help!
Thank you in advance.
Solved! Go to Solution.
Hi @RinJ17,
You can try this:
1) Create 2 new tables and link them with your main one.
Components = DISTINCT ( data[Component] )
Weeks = DISTINCT ( data[Week Number] )
2) Create a measure.
Counter = COUNT ( data[Week Number] ) + 0
3) Use the newly created tables and measure in the matrix visual:
Best Regards,
Alexander
Hi @RinJ17,
You can try this:
1) Create 2 new tables and link them with your main one.
Components = DISTINCT ( data[Component] )
Weeks = DISTINCT ( data[Week Number] )
2) Create a measure.
Counter = COUNT ( data[Week Number] ) + 0
3) Use the newly created tables and measure in the matrix visual:
Best Regards,
Alexander
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 70 | |
| 45 | |
| 43 | |
| 36 | |
| 23 |
| User | Count |
|---|---|
| 196 | |
| 125 | |
| 105 | |
| 77 | |
| 56 |