Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
In the Matrix visual, I have a few value fields that contain the same values for all column values.
Sorry, I had to anonymize the data, but essentially, the columns I highlighted in yellow are repeated over and over for every column value. Ideally, that data would appear just once on the right, like the Style information does. I can't put that data in the rows with the style, upc, and size because these are measures.
Does anyone know of any way to customize a table such as this?
Solved! Go to Solution.
Hi @APM ,
This is a design behavior for matrix visual objects.
You can post your idea to Ideas . https://ideas.powerbi.com/ideas/
You can use the following instead.
This is my current matrix.
If you want the measure to be displayed only on the rightmost side (at the total), then you can create another measure2 to be placed on the matrix instead of the measure.
Measure 2 = IF(ISINSCOPE('Table'[type]),BLANK(),[Measure])
If you want the measure to be displayed only on the far right (where the type is b3 in my example), then you can create another measure3 to place on the matrix instead of the measure.
Measure 3 = IF(SELECTEDVALUE('Table'[type])="b3",[Measure],BLANK())
Or you can make the MEASURE invisible by creating a graphic mask that is the same color as the background color or by manually adjusting the column width.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @APM ,
This is a design behavior for matrix visual objects.
You can post your idea to Ideas . https://ideas.powerbi.com/ideas/
You can use the following instead.
This is my current matrix.
If you want the measure to be displayed only on the rightmost side (at the total), then you can create another measure2 to be placed on the matrix instead of the measure.
Measure 2 = IF(ISINSCOPE('Table'[type]),BLANK(),[Measure])
If you want the measure to be displayed only on the far right (where the type is b3 in my example), then you can create another measure3 to place on the matrix instead of the measure.
Measure 3 = IF(SELECTEDVALUE('Table'[type])="b3",[Measure],BLANK())
Or you can make the MEASURE invisible by creating a graphic mask that is the same color as the background color or by manually adjusting the column width.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.