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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
cbschley
Helper III
Helper III

Add a measure next to Matrix visual using one visual

I am trying to add an additional measure next to a matrix. The Matrix uses 'Month' along the top, and I want to input another measure next to it without creating a separate visual.

Currently I have this set up as two separate visuals, but this creates problems in a number of ways (users trying to export, filtering & resizing of visuals). Is it possible to build something like this using one visual?


 

cbschley_0-1721411404601.png

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @cbschley ,

I create a table as you mentioned.

vyilongmsft_0-1721616396275.png

Then I create a measure and here is the DAX code.

Measure = 
CALCULATE ( SUM ( 'Table'[Total] ), ALLEXCEPT ( 'Table', 'Table'[Name] ) )

vyilongmsft_1-1721616468497.png

In Matrix in Power BI Desktop, the Measure added in Values will only be shown after each column.

vyilongmsft_2-1721617218561.png

So I think you can show the Measure separately.

vyilongmsft_3-1721617305490.png

 

 

Best Regards

Yilong Zhou

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @cbschley ,

I create a table as you mentioned.

vyilongmsft_0-1721616396275.png

Then I create a measure and here is the DAX code.

Measure = 
CALCULATE ( SUM ( 'Table'[Total] ), ALLEXCEPT ( 'Table', 'Table'[Name] ) )

vyilongmsft_1-1721616468497.png

In Matrix in Power BI Desktop, the Measure added in Values will only be shown after each column.

vyilongmsft_2-1721617218561.png

So I think you can show the Measure separately.

vyilongmsft_3-1721617305490.png

 

 

Best Regards

Yilong Zhou

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

sevenhills
Super User
Super User

No straight forward way of doing. I recommend to check these and see if it helps!
https://learn.microsoft.com/en-us/power-bi/create-reports/end-user-show-data?tabs=powerbi-desktop

 

Alternatively, you can copy the column chart visual, past it below the original chart, and change the new, duplicated chart to a table visualization and add more measures per your needs.

If you are ok to have a custom/import visual try this free one:
https://appsource.microsoft.com/en-us/product/power-bi-visuals/wa200000675?tab=overview

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors