Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi all,
I have a following dimension table:
And I would like to have a Matrix visual with the following structure:
Could you please help me how to get these two columns (Category1 and Category2) at the end?
Thanks a lot
Solved! Go to Solution.
Hi @pk_1002,
You will need a disconnected table that will hold that column names and a measure (or measures in your case) to return the value based on the current column name.
Attached is a sample pbix with a similar use case.
Hi @pk_1002 ,
Did @danextian reply solve your problem? If so, please mark it as the correct solution, and point out if the problem persists.
Best Regards,
Adamk Kong
Hi @pk_1002,
You will need a disconnected table that will hold that column names and a measure (or measures in your case) to return the value based on the current column name.
Attached is a sample pbix with a similar use case.
many thanks! I made a disconnected table.
Regarding the disconnected table and if your categories and subcategories are ever changing or a new ones are ocassionaly added, you can try the following calculated table
Disconnected Table =
VAR SubCat =
SELECTCOLUMNS ( 'table', "Column", 'table'[subcategory], "Type", "Subcategory" )
VAR _Cat =
SELECTCOLUMNS ( 'table', "Column", 'table'[category], "Type", "Category" )
RETURN
ADDCOLUMNS (
DISTINCT ( UNION ( SubCat, _Cat ) ),
"Sort", IF ( [Type] = "Category", 1 )
)
Sort Column by Sort. This is so subcategories always come first.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
86 | |
78 | |
54 | |
39 | |
35 |
User | Count |
---|---|
102 | |
84 | |
48 | |
48 | |
48 |