Forum Discussion
Change order bars stacked column chart
- Anonymous2 years ago
Hi louisquinet ,
It looks like it's sorting by the number after tier, you can get the number by splitting it with power query first and then set it up with sort by column:
One can notice a change in the sorting from my first post.
= Table.AddColumn(#"Changed Type", "Text After Delimiter", each Text.AfterDelimiter([Tier], " "), type text)Hope it helps!
Best regards,
Community Support Team_ Scott ChangIf this post helps then please consider Accept it as the solution to help the other members find it more quickly.
Hello,
Thank you for your respons.
In the image you can see what I would like to change:
I would like dat the orde of the bars changes from to Tier 1 - 4 - 2 - 3 to Tier 1 - 2 - 3 - 4.
Thanks
Louis
Hi louisquinet ,
It looks like it's sorting by the number after tier, you can get the number by splitting it with power query first and then set it up with sort by column:
One can notice a change in the sorting from my first post.
= Table.AddColumn(#"Changed Type", "Text After Delimiter", each Text.AfterDelimiter([Tier], " "), type text)
Hope it helps!
Best regards,
Community Support Team_ Scott Chang
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
- louisquinet2 years ago
Helper II
Thanks