web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details

Community site session details

Session Id :
Power Apps - Building Power Apps
Unanswered

Sorting Issues With Dataverse Number Fields

(0) ShareShare
ReportReport
Posted on by 100
Good morning all,
I found an issue with the modern Table Control, namely that it was sorting numeric (double) Dataverse Columns as textual fields rather than as numbers. I have found the same issue in other table-type controls, such as DataTables, and various PCF components. 
 
I decided to go back to basics. So, I revisited the Gallery control and implemented manual sorting via PowerApps code in the Items property using a Switch command to select the column to sort on within a single Sort statement. However, I encountered the same issue.
 
So, my next step was to replace a single Items selection code SORT statement with completely separate Sort statements. This worked perfectly, with the number column sorted properly.
 
 
So, this works: 
Switch
(   var_Sort_Column
    , "Name", Sort (coll_Accounts, Name, var_SortOrder)
    , "Balance", Sort (coll_Accounts, Balance, var_SortOrder)
    , Sort (coll_Accounts, Name, var_SortOrder)
)
 
But this doesn't
Sort
(coll_Accounts,
    Switch
    (   var_Sort_Column
        ,"Name", Name
        ,"Balance", Balance
        , Name
    ),
    var_SortOrder
)
 
This is fine, but I am still left with a manual solution.
 
So, my questions is, does anyone know of an out-of-the box component that will sort all datatypes properly (not just text fields)?
 
Thanks, Craig
Categories:
I have the same question (0)

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

Coming soon: forum hierarchy changes

In our never-ending quest to improve we are simplifying the forum hierarchy…

Chiara Carbone – Community Spotlight

We are honored to recognize Chiara Carbone as our Community Spotlight for November…

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 755 Most Valuable Professional

#2
Michael E. Gernaey Profile Picture

Michael E. Gernaey 350 Super User 2025 Season 2

#3
MS.Ragavendar Profile Picture

MS.Ragavendar 248 Super User 2025 Season 2

Last 30 days Overall leaderboard