Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Apps - Power Apps Pro Dev & ISV
Suggested answer

Remove Default Collection Sorting

(0) ShareShare
ReportReport
Posted on by 18
Hi Community
 
I have created below collection but it seems by default it gets sorted alphabetically. How do I keep same column order as created (i.e. Column 2, 3 and 1)?
 
ClearCollect(
    MyCollection,
    {
        Column2: "test2",
        Column3: "test3",
        Column1: "test1"
    }
);
 
Below image shows how this is currently coming up. I need this to show as Column2 | Column3 | Column1 same order as indicated above.
 
Note: I have used ShowColumns function to specify the order but it keeps coming back sorted alphabetically. 
 
Any idea how to override the default collection sorting?
 
Thanks
  • Jeff_VS Profile Picture
    18 on at
    Remove Default Collection Sorting
    Hi @Ram
     
    I did try that before but still same result. I actually asked Copilot and that was one of the suggestions to use ShowColumns but as I mentioned in my original post, I had tried that and it did not work.

    No matter what I do It seems the end result is always that collection will be sorted alphabetically.
     
    Any other idea?
     
    Thanks
    Jeff
  • Suggested answer
    Ram Prakash Profile Picture
    5,289 Super User 2025 Season 1 on at
    Remove Default Collection Sorting
    Hi,

    Try Storing the Values in a Collection first then try like below
     
    ClearCollect(
    CollectionDuplicate,
    ShowColumns(
    MyCollection,
    "Column2",
    "Column3",
    "Column1"
    )
    );

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Paul Stork – Community Spotlight

We are honored to recognize Paul Stork as our July 2025 Community…

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Announcing the Engage with the Community forum!

This forum is your space to connect, share, and grow!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 791 Most Valuable Professional

#2
MS.Ragavendar Profile Picture

MS.Ragavendar 410

#3
mmbr1606 Profile Picture

mmbr1606 275 Super User 2025 Season 1