I tried to sort a data table with following two ways
table.DefaultView.Sort = \"Town ASC, Cutomer ASC\" table.Select(\"\", \"Town ASC, Cutomer ASC\")
Try this:
Dim dataView As New DataView(table) dataView.Sort = " AutoID DESC, Name DESC" Dim dataTable AS DataTable = dataView.ToTable()