Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Apps - Building Power Apps
Answered

Clearcollect, Sort and Distinct function on dropdown

(0) ShareShare
ReportReport
Posted on by 691

Hello,
I grabbed a friend's Power Apps project to help him work on it, but I don't understand a formula he put on the "OnSelect" property of his dropdown.

Could you please explain this formula to me? Thank you in advance!

 

ClearCollect(
 colCategorie;
 {Result: ""};
 Sort(
 Distinct(
 Categorie;
 Categorie
 );
 Result
))

 

  • s44 Profile Picture
    691 on at
    Re: Clearcollect, Sort and Distinct function on dropdown

    Thank you so much ! It's much clearer thanks to you!

  • Verified answer
    BCBuizer Profile Picture
    22,012 Super User 2025 Season 1 on at
    Re: Clearcollect, Sort and Distinct function on dropdown

    Hi @s44 ,

     

    Looking at this formula it is probably used to populate a dropdown or combobox to select a category as part of some filter statement. I added comments that will hopefully clarify:

    // This formula creates a collection (colCategorie) with a single column called Result
    ClearCollect(
     colCategorie;
    //This adds an empty item at the beginning of the collection
     {Result: ""};
    //Further items are added extracting the unigue values from the Categorie data source, in the Categorie column and those are then sorted alphabetically, ascending.
     Sort(
     Distinct(
     Categorie;
     Categorie
     );
     Result
    ))

     

     

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

🌸 Community Spring Festival 2025 Challenge 🌸

WIN Power Platform Community Conference 2025 tickets!

Markus Franz – Community Spotlight

We are honored to recognize Markus Franz as our April 2025 Community…

Kudos to the March Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 146,618 Most Valuable Professional

#2
RandyHayes Profile Picture

RandyHayes 76,287 Super User 2024 Season 1

#3
Pstork1 Profile Picture

Pstork1 65,962 Most Valuable Professional

Leaderboard