Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
JOO13
Resolver I
Resolver I

Clustered Bar Chart Sorting

Hi All, 

 

I'm trying to sort the clustered bar chart based with below sample dataset in Power Bi, 

Customer GroupSales 
AAA500
ABA50
ACA200
ADA2000
BBB1000
BQB500
BAB400

 

The original chart available in Power Bi will be looking like this, and only limited sorting options are available (by Sales / by Customers' name alphabetically. 

 

**I generated similar output by using excel

image.png

 

I'm trying to achieve sorting like below. Sort the sales in descending orders within each customer groups. Couldn't find any solutions through online so far, appreaciate that if someone could help to advice on this. 

image.png

Thanks in advance! 

1 ACCEPTED SOLUTION
v-yulgu-msft
Employee
Employee

Hi @JOO13 ,

 

Add a calculated column to above sample dataset.

Rank Col =
COUNTROWS (
    FILTER (
        Test_9,
        Test_9[Sales ] <= EARLIER ( Test_9[Sales ] )
            && Test_9[Group] = EARLIER ( Test_9[Group] )
    )
)

1.PNG

 

Choose [Customer] field, click "Sort by Column", choose "Rank Col" from the list.

2.PNG

 

Chart preview.

3.PNG

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
v-yulgu-msft
Employee
Employee

Hi @JOO13 ,

 

Add a calculated column to above sample dataset.

Rank Col =
COUNTROWS (
    FILTER (
        Test_9,
        Test_9[Sales ] <= EARLIER ( Test_9[Sales ] )
            && Test_9[Group] = EARLIER ( Test_9[Group] )
    )
)

1.PNG

 

Choose [Customer] field, click "Sort by Column", choose "Rank Col" from the list.

2.PNG

 

Chart preview.

3.PNG

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks a lot for the recommendations. It's a good idea but unfortunately it won't work for my case as the "Sales" is a measures. 

ajayemmadi1
Helper I
Helper I

Hi JOO13,

 

You can create a condtitional column (Sort_Order). For example in your case 
AD =1

AA =2

AC =3

AB =4

BB =5

BQ =6

BA =7

Create a condtional column as per the above format and then do sorting of Customer with respect to Sort_Order Column. I hope your issue will be resolved using this approach.

 

Thanks for the recommendations. It's a good idea but unfortunately it won't work for my case as "Sales" is a Measure. 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.