Read last row from excel sheet abd write last row in another excel

I want to read only last row from an excel sheet and write another excel sheet just Below existing row of that sheet. Could anyone please kindly help. I

Hey

First get your row count to know which will be the index with the following code

yourDT.RowCount(-1)

Then pass that index to this activity

It will retrieve your entire row in a new datatable that you can write in excel

Regards!