I have a data with the price of the products
I want to choose the cheapest product and the most expensive product
but it sorts by first digit
1599
499
529
599
sorting is not the way I want it to be
Check out the XAML file
Low & Highest Price.xaml (7.6 KB)
Note : Instead of Build Data Table use Excel (Read Range activity)
Output

Regards
Gokul
Hi @Yurdanur_Yusuf,
You can try this assign and after write dtNewUrun to excel.
dtNewUrun = dtUrun.AsEnumerable().OrderBy(Function (row) CINT(row(“Ürün Fiyat”))).Select(Function (row) row).ToArray.CopyToDatatable()
Kind Regards.
