Forum Discussion
Not Showing % value in show as table
- Anonymous3 years ago
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.