Hi,
I am having input data table like this input.xlsx (9.0 KB)
I need to sort the row of data table, The same login id row should be in the next row of data table like 
Can anyone guide me how to do this, Please?
Hi,
I am having input data table like this input.xlsx (9.0 KB)
I need to sort the row of data table, The same login id row should be in the next row of data table like 
Can anyone guide me how to do this, Please?
Hi,
I think this should work in your case:
yourDatatable.AsEnumerable.OrderBy(Function(x) x(“LoginId”)).CopyToDataTable
This returns another datatable ordered for “LoginId”.
Regards, Giovanni
Thanks for your response @q.gio
How we should use this ? Can you explain me please
Thanks for your response @shaikmdrafi
You dont want this activity?
Okay Thanks @q.gio