Hi Marina!
You need to "translate" the Excel into DataTable (C#). Then you can use a DataView(C#) to sort the data.
Code example:
DataView dv = ft.DefaultView;
dv.Sort = "occr desc";
DataTable sortedDT = dv.ToTable();
For the "translate"... Here you have a quick guide for
instaling OLE DB on your Blue Prism environment. Then you can connect to your Excel like a database. Use this link to complete your connection string
https://www.connectionstrings.com/excel/If don't want to use code, you can create a Collection connection to your Excel like a database, and the you can use the "
Utility - Collection Manipulation" and then choose
"Sort Collection"
Hope this helps you.
Bye :)
------------------------------
Pablo Sarabia
Programmer
Altamira AM
------------------------------