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
You can use the filter data table activity to get this, the result willl be in the output data table
thanks
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
You dont want this activity?
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.