How to move the first row to last row in DataTable?

Hi, I have an example datatable here.
I want to move the first row to last row.
190711%2016_16_43

it looks like here.
190711%2016_16_19

How can I do this?

You can do these steps:

  1. Create a new DataRow with value of row 1.
  2. Delete row 1.
  3. Add the newly created DataRow to the DataTable.

Hi @saintseiyer,
1.Delete the the specific data row using the delete data row activity and save it in one data row variable.
2.Then use add data row activity, By default this activity will add at the end of data table.
3.So, no need of other data table.
If you find this useful mark it as solution and close the thread.
Any queries let me know.
Cheers.
Vashisht