Forum Discussion
Power BI Matrix Customize Columns
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
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.
2 Replies
- amitchandakSuper User
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]))
) - v-diye-msftCommunity Support
Hi Anonymous
Let me know if you'd like to get this one:
Pbix attached.