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
Is there a way in Power BI Matrix that can do the following?
This is my data.
| Category | Size | Specialties | Amount |
| A | 15 | Beta | 50 |
| B | 15 | Beta | 50 |
| C | 10 | Gama | 50 |
| C | 10 | Gama | 50 |
This is what i want to present on the Matrix Visualization
Solved! Go to Solution.
@Anonymous , I doubt it possible directly.
Maybe you create a table like this and try
Take care of data types
union(
summarize(table, table[Category], table[Specialties], "Amount",sum(Table[Amount])),
summarize(table, table[Category], table[Size], "Amount",sum(Table[Amount]))
)
Hi @Anonymous
Let me know if you'd like to get this one:
Pbix attached.
@Anonymous , I doubt it possible directly.
Maybe you create a table like this and try
Take care of data types
union(
summarize(table, table[Category], table[Specialties], "Amount",sum(Table[Amount])),
summarize(table, table[Category], table[Size], "Amount",sum(Table[Amount]))
)
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 46 | |
| 42 | |
| 34 | |
| 31 | |
| 21 |
| User | Count |
|---|---|
| 140 | |
| 125 | |
| 100 | |
| 82 | |
| 64 |