What's the easiest way to review the order of a DataTable?
' Clean Table
dtRows.Columns.Add("date", GetType(DateTime))
For Each row In dtRows.Rows
row("date") = DateTime.Parse(row(0).ToString.Replace("""", ""))
Next
' Remove Old Col
dtRows.Columns.Remove("Column1")
' Sort
dtRows.DefaultView.Sort = "date ASC"
Is doing nothing for me, so I'd rather just have a loop reverse it.
I've tried recreating a new column with the DateTime Type and removing the old column and sorting by that, it just isn't working for me.