Arrange column in ascending order

Is it possible to arrange the excel column in descending order?
Current outcome:

Expected outcome:

Any suggestions?

Thank you xoxo

1 Like

You can use some assigns as below:

DataTable.DefaultView.Sort = “Matches DESC”
DataTable = DataTable.DefaultView.ToTable

1 Like

dt.DefaultView.Sort = “[Matches] ASC”
dt = dt.DefaultView.ToTable

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.