Forum Discussion

louisquinet's avatar
louisquinet
Icon for Helper II rankHelper II
2 years ago
Solved

Change order bars stacked column chart

Hello

In my Power BI I have a stacked column chart with 4 bars: Tier 1, Tier 2, Tier 3 and Tier 4.
What do I have to do to get them in the right order?
Thank you in advance
Louis

 

  • Anonymous's avatar
    Anonymous
    2 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 Chang

     

    If this post helps then please consider Accept it as the solution to help the other members find it more quickly.

5 Replies

  • Greg_Deckler's avatar
    Greg_Deckler
    Icon for Community Champion rankCommunity Champion

    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.

    • louisquinet's avatar
      louisquinet
      Icon for Helper II rankHelper 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

      • Anonymous's avatar
        Anonymous
        Not 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 Chang

         

        If this post helps then please consider Accept it as the solution to help the other members find it more quickly.

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi louisquinet ,

     

    You just need to turn on this option to sort:

    It is located in the layout option in column(sort by value)

     

    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.