Forum Discussion
100% Stacked Column Chart Percentage
- Anonymous5 years ago
Hi Anonymous ,
Sorry for my late reply.
Here's my solution.
1.Unpivot the table in Power Query
2.Because there can only be one field in the axis, we have to merge the two columns to create the following calculated column.
P&U = [Period]&"-"&[Unit]3.Create the following measure
Measure = DIVIDE(SUM('Table'[Value]),CALCULATE(SUM('Table'[Value]),FILTER(ALLEXCEPT('Table','Table'[P&U]),[Attribute]="Sales")))4.The result circled in the red box is the result you want, you can check it.
More details in the attachment.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Anonymous
You can use stacked column chart and put your category column which consist value like EBITA etc under legend and put your percentage column under Values
It will show your negative value as it is.
Thanks,
Samarth
- Anonymous5 years agoNot applicable
Thanks Samarth_18 ,
My dataset is like this:
In this case if I use the stack column solution you provided and take the hard coded percentage column as value, when I select filter/slicer (e.g. Period 1, Unit A+B), it seems the result will just average/sum the hard-coded percentage instead of showing the correct %.
Thanks.
- ryan_mayu5 years agoSuper User
Anonymous
you need to unpivot the table and create a measure
Measure = sum('Table'[Value])/CALCULATE(sum('Table'[Value]),ALLEXCEPT('Table','Table'[Period]))and use stacked column
pls see the attachment below