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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Aden123
Regular Visitor

Sort data in descending order in same cell

I have some data that needed sorting in the same cell.

 

Current data

ABC019, ABC018, ABC010

 

Expected results

ABC010, ABC018, ABC019

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi,@Aden123 

I am glad to help you. 

According to your description, actually you want to sort data in ascending order in same cell? 

If I understand you correctly, then you can refer to my solution. 

 

1.Import the data into Power BI Desktop and click Transform data to open Power Query Edit. 

vfenlingmsft_0-1719379117631.png

 

 

2.Choose Custom Column in Power Query Edit. 

vfenlingmsft_1-1719379132314.png

 

3.Enter M language formulas to create new columns 

vfenlingmsft_2-1719379151357.png

 

 

let
    Source = [Current data],
    SplitColumn = Text.Split(Source, ","),
    SortedList = List.Sort(SplitColumn, Order.Ascending),
    CombinedText = Text.Combine(SortedList, ",")
in
    CombinedText

 

Result : 

vfenlingmsft_3-1719379168274.png

 

I hope my suggestions give you good ideas, if you have any more questions, please clarify in a follow-up reply.
Best Regards,
Fen Ling,
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

1 REPLY 1
Anonymous
Not applicable

Hi,@Aden123 

I am glad to help you. 

According to your description, actually you want to sort data in ascending order in same cell? 

If I understand you correctly, then you can refer to my solution. 

 

1.Import the data into Power BI Desktop and click Transform data to open Power Query Edit. 

vfenlingmsft_0-1719379117631.png

 

 

2.Choose Custom Column in Power Query Edit. 

vfenlingmsft_1-1719379132314.png

 

3.Enter M language formulas to create new columns 

vfenlingmsft_2-1719379151357.png

 

 

let
    Source = [Current data],
    SplitColumn = Text.Split(Source, ","),
    SortedList = List.Sort(SplitColumn, Order.Ascending),
    CombinedText = Text.Combine(SortedList, ",")
in
    CombinedText

 

Result : 

vfenlingmsft_3-1719379168274.png

 

I hope my suggestions give you good ideas, if you have any more questions, please clarify in a follow-up reply.
Best Regards,
Fen Ling,
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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