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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I have a data table that follows the following format:
Source | Status | Count |
A | Completed | 10 |
A | TO-DO | 2 |
B | In-Progress | 5 |
B | TO-DO | 5 |
B | Completed | 10 |
C | COMPLETED | 6 |
There are 4 possible values in status: "COMPLETED", "IN-PROGRESS", "TO-DO", "FAILED"
Sometimes one of the above status values will not be in the data table. In this example, "FAILED"
I want to create a matrix with static columns for the status values.
So for the above table, I want to create a matrix that looks like the following
Source | COMPLETED | IN-PROGRESS | FAILED | TO-DO |
A | 10 | 0 | 0 | 2 |
B | 10 | 5 | 0 | 5 |
C | 6 | 0 | 0 | 0 |
D | 0 | 0 | 0 | 0 |
Currently my matrix displays the above table without the "FAILED" column since this value doesn't appear in the data table.
How can I create a matrix with static columns to display "COMPLETED", "IN-PROGRESS", "FAILED", "TO-DO" ?
Solved! Go to Solution.
mannually created a status dim table and create relationship between the tables.
then create a measure
Proud to be a Super User!
mannually created a status dim table and create relationship between the tables.
then create a measure
Proud to be a Super User!
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.