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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
I have a table that looks liek this:
Priority | name | amount | other data |
4 | name1 | 2 | 6 |
4 | name 2 | 2 | 3.2 |
3 | name3 | 2 | 6 |
1 | name1 | 3 | 1 |
1 | name1 | 3 | 1 |
1 | name2 | 3 | 6 |
But I want it to look like this:
Priority 4 | |||
name 1 | 2 | 6 | |
name 2 | 2 | 3.2 | |
Priority 3 | |||
name3 | 2 | 6 | |
Priority 1 | |||
name 1 | 3 | 1 | |
nmae1 | 3 | 1 | |
name2 | 3 | 6 |
I tried doing it with a matrix but I dont have any unique identitfiers so not all items would show up, I feel like this souldn't be hard to do but I can't figure it out
Perhaps create a calculated column like:
Column = 1
Now you have a value for every row. Put this column in your matrix with any aggregation. Turn off column header word wrapping and value word wrapping and then reduce the width of this column to nothing. Every row should show up now, regardless.
I'm assuming that you put Priority and Name as rows and drilled down using the forked arrow icon, correct?