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.
louisquinet Create a sort by column and sort whatever column you are using for the categories by that column. However, that may not work depending on how you have configured that visual so impossible to tell with the information provided.
Sorry, having trouble following, can you post sample data as text and expected output?
Not really enough information to go on, please first check if your issue is a common issue listed here: https://community.powerbi.com/t5/Community-Blog/Before-You-Post-Read-This/ba-p/1116882
Also, please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
The most important parts are:
1. Sample data as text, use the table tool in the editing bar
2. Expected output from sample data
3. Explanation in words of how to get from 1. to 2.
- louisquinet2 years ago
Helper II
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
- Anonymous2 years agoNot applicable
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.
- louisquinet2 years ago
Helper II
Thanks