Forum Discussion
PowerBIBeets
8 years agoRegular Visitor
How to section my table
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
1 Reply
- Greg_DecklerCommunity Champion
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?