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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

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
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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