Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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]))
)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.