Is it possible to arrange the excel column in descending order?
Current outcome:
Expected outcome:
Any suggestions?
Thank you xoxo
Is it possible to arrange the excel column in descending order?
Current outcome:
Expected outcome:
Any suggestions?
Thank you xoxo
You can use some assigns as below:
DataTable.DefaultView.Sort = “Matches DESC”
DataTable = DataTable.DefaultView.ToTable
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.