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
I want to display a stacked bar chart with categories in a custom order with a tooltip showing the percentage of total of each category in the bar. It seems I am able to do one, but not both. The measure used to display the percent of total is below:
Measure =
DIVIDE (
DISTINCTCOUNT(Table[ID]),
CALCULATE(DISTINCTCOUNT(Table[ID]), ALL(Workflows[Category]) ),
0
) This measure works perfectly fine.
I am also trying to display the categories in a custom order by index. However, when I go to the Data tab and sort the Category field by the index - while it sorts the categories in the correct order, the % of total of each category in the stacked bar now all evaluate to 100%. If I revert to sorting the the categories field in the default manner, the % of total works fine again.
Any ideas how to fix this issue?
Solved! Go to Solution.
Hey @markmess77 ,
when you are using a sort-by-column, you also have to add this column with an ALL. The reason is that in the background there is a group by the sort column. Check the following article if you fully want to understand the problem:
Side effects of the Sort By Column setting in DAX - SQLBI
Otherwise you can just add the sort by column:
Measure =
DIVIDE (
DISTINCTCOUNT(Table[ID]),
CALCULATE(DISTINCTCOUNT(Table[ID]), ALL(Workflows[Category]), ALL(Workflows[CategorySortByColumn]) ),
0
)
Hey @markmess77 ,
when you are using a sort-by-column, you also have to add this column with an ALL. The reason is that in the background there is a group by the sort column. Check the following article if you fully want to understand the problem:
Side effects of the Sort By Column setting in DAX - SQLBI
Otherwise you can just add the sort by column:
Measure =
DIVIDE (
DISTINCTCOUNT(Table[ID]),
CALCULATE(DISTINCTCOUNT(Table[ID]), ALL(Workflows[Category]), ALL(Workflows[CategorySortByColumn]) ),
0
)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!