Forum Discussion
Decomposition Tree show both (Numbers & Percentage)
Hi Ahmed_Khalil ,
Accroding to my knowledge, Currently Decomposition Tree does not support show both number and percentage at the same time.
An idea similar with what you expect has been submitted here, please vote it up and you can add comments.
If an idea is high voted there by other customers, it will be promising that Microsoft Product Team will take it into consideration when designing the next version in the future.
Maybe you can use tooltips to achieve your goal, here is my sample:
Create a measure percentage:
Percentage =
var _a = SUM('Table'[Column1])/CALCULATE(SUM('Table'[Column1]),ALL('Table'))
return _a
Then apply it to the tooltips:
Final output:
For more details, please refer to:
Customizing tooltips in Power BI Desktop - Power BI | Microsoft Learn
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.