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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi,
I've below matrix and with Subtotal in below picture. I would like to add another row, which show % Total.
It should shows like
%Total 35%.
Can you suggest how I could add this new row? I am wondering if this can be added to Grand Total row? Thanks
Solved! Go to Solution.
Hi,
I am not sure how your semantic model looks like, but I tried to create a sample pbix file like below.
One of ways to achieve this is to configure the format-setting of matrix visualization under "Row subtotal" section, like below image.
Please check the below Link (Microsoft Learn), picture, and the attahced pbix file.
Matrix visual format settings - Power BI | Microsoft Learn
Count measure: =
IF ( NOT ISINSCOPE( result[category] ), BLANK (), SUM ( result[count] ) )
Stage measure: =
SWITCH (
TRUE (),
ISINSCOPE ( result[Result] ), BLANK (),
ISINSCOPE ( result[category] ), FORMAT ( SUM ( result[stage_count] ), "#,#0" ),
FORMAT ( SUM ( result[count] ) / SUM ( result[stage_count] ), "#0.00%" )
)
Thanks so much for the help. I will give it a go.
Hi,
I am not sure how your semantic model looks like, but I tried to create a sample pbix file like below.
One of ways to achieve this is to configure the format-setting of matrix visualization under "Row subtotal" section, like below image.
Please check the below Link (Microsoft Learn), picture, and the attahced pbix file.
Matrix visual format settings - Power BI | Microsoft Learn
Count measure: =
IF ( NOT ISINSCOPE( result[category] ), BLANK (), SUM ( result[count] ) )
Stage measure: =
SWITCH (
TRUE (),
ISINSCOPE ( result[Result] ), BLANK (),
ISINSCOPE ( result[category] ), FORMAT ( SUM ( result[stage_count] ), "#,#0" ),
FORMAT ( SUM ( result[count] ) / SUM ( result[stage_count] ), "#0.00%" )
)
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 43 | |
| 42 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 190 | |
| 122 | |
| 96 | |
| 66 | |
| 46 |