Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Apps - Building Power Apps
Answered

Sort order of distinct results from filtered dataverse table column

(1) ShareShare
ReportReport
Posted on by 157
Hello, 
 
I have a dataverse table with a column with rows of data in the following format  : A/AAA-111111A
The dataverse column is sorted (in dataverse) on the ArticleReference column. 
 
I return the column in a dropdown control: 
 
Distinct(
    Filter(
        Tables;
        ClientName = drpDown.Selected.Value
    );
        ArticleReference
)
 
The dropdown displays all the ArticleReferences in the column, however the order is not the same as in the dataverse list. 
 
Can someone please help with how I can sort the dropdown output to be the same as the underlying dataverse column ?
 
Thanks
 
  • Verified answer
    Michael E. Gernaey Profile Picture
    41,416 Super User 2025 Season 1 on at
    Sort order of distinct results from filtered dataverse table column
    Hi
     
    Since I dont have your data etc please try this
     
    SortByColumns(Distinct(
        Filter(
            Tables;
            ClientName = drpDown.Selected.Value
        );
            ArticleReference
    ), "ArticleReference", SortOrder.Ascending)
     
    If the "ArticleReference" gives you an error, try "Value" instead
     
    Lastly, I have it sorting Ascending, you may want it Descending, not sure based on your Dataverse Sort. Also, don't assume the sort order in Dataverse is what you see or need, its not doing by your column.
     
    Cheers,

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

Understanding Microsoft Agents - Introductory Session

Confused about how agents work across the Microsoft ecosystem? Register today!

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,708 Most Valuable Professional

#2
RandyHayes Profile Picture

RandyHayes 76,287 Super User 2024 Season 1

#3
Pstork1 Profile Picture

Pstork1 66,030 Most Valuable Professional

Leaderboard