function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Sai.MaharajpetSai.Maharajpet 

Custom Code for Sorting Account by Column in custom lookup search results modal

User-added image

Please help me in this thank you

AnudeepAnudeep (Salesforce Developers) 
Hi Sai, 

You can try sorting your Acconts in your SOQL query  
[SELECT name, owner.name FROM account ORDER BY name DESC LIMIT 10]

ORDER BY: https://developer.salesforce.com/docs/atlas.en-us.soql_sosl.meta/soql_sosl/sforce_api_calls_soql_select_orderby.htm

Please accept my solution as Best Answer if my reply is helpful

Thanks, 
Anudeep