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 Team,
I am facing below issue, I have used 100% stacked column chart, here in the report side it is showing the value and in brackets it is showing the % too. But while clicking on the show as table button it was showing the values instead of %. But I need to show the % value as per the requirement by click on show as table. Can some one please help me in this scenario below is the screenshot for reference.
While clicking on show as table it was showing like values below is the screenshot for reference.
Thanks,
Solved! Go to Solution.
Hi @Anonymous ,
It is a good idea, while it is by design in Power BI for now. As a workaround, you can create a normal stacked column chart and create a measure as below to get the percentage to put on the visual.
Percentage =
VAR _product =
SELECTEDVALUE ( 'Table'[Product] )
VAR _customer =
SELECTEDVALUE ( 'Table'[Customer] )
VAR _part =
SUM ( 'Table'[Revenue] )
VAR _all =
CALCULATE (
SUM ( 'Table'[Revenue] ),
FILTER (
ALLSELECTED ( 'Table' ),
'Table'[Product] = _product
&& 'Table'[Customer] = _customer
)
)
RETURN
DIVIDE ( _part, _all )
If the above one can't help you get the desired result, please provide some raw data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
How to upload PBI in Community
Best Regards
Excellent its working as expected fine..
Thank you so much....
@Anonymous I dont think you can make the 'Show as Table" show percentages shown in the stacked bar graph.
Instead you can create a measure something like below and use that in a Matrix visual next to the stacked bar graph to show the values.
Hi @Anonymous ,
It is a good idea, while it is by design in Power BI for now. As a workaround, you can create a normal stacked column chart and create a measure as below to get the percentage to put on the visual.
Percentage =
VAR _product =
SELECTEDVALUE ( 'Table'[Product] )
VAR _customer =
SELECTEDVALUE ( 'Table'[Customer] )
VAR _part =
SUM ( 'Table'[Revenue] )
VAR _all =
CALCULATE (
SUM ( 'Table'[Revenue] ),
FILTER (
ALLSELECTED ( 'Table' ),
'Table'[Product] = _product
&& 'Table'[Customer] = _customer
)
)
RETURN
DIVIDE ( _part, _all )
If the above one can't help you get the desired result, please provide some raw data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
How to upload PBI in Community
Best Regards
Hi,
This is not related to my topic earlier you solved one. I downloaded the PBIX file and do some sort of testing there also I am facing the similar kind of issue. While in the report section it is showing the value and its respective% but trying to see the same in show as table, but we can only see the value instead of percentage. I want to see the % instead of value.
Thanks for your response.
@Anonymous
Similar issue was raised in another topic
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 38 | |
| 37 | |
| 28 | |
| 28 |
| User | Count |
|---|---|
| 124 | |
| 89 | |
| 73 | |
| 66 | |
| 65 |