Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
pk_1002
Frequent Visitor

Subtotals in Matrix as Columns

Hi all,

 

I have a following dimension table:

 tablesub.png

And I would like to have a Matrix visual with the following structure:

sub2.png

Could you please help me how to get these two columns (Category1 and Category2) at the end?

 

Thanks a lot

1 ACCEPTED SOLUTION
danextian
Super User
Super User

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.

danextian_1-1711690300249.png

 

danextian_0-1711690277895.png

Attached is a sample pbix with a similar use case.










Did I answer your question? Mark my post as a solution!


Proud to be a Super User!









"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

View solution in original post

4 REPLIES 4
v-kongfanf-msft
Community Support
Community Support

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

danextian
Super User
Super User

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.

danextian_1-1711690300249.png

 

danextian_0-1711690277895.png

Attached is a sample pbix with a similar use case.










Did I answer your question? Mark my post as a solution!


Proud to be a Super User!









"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

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.

 










Did I answer your question? Mark my post as a solution!


Proud to be a Super User!









"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.