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.
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.
Thanks