in my UiPath code i set the paste to row 152 in the other excel file because that is the first row that is empty. Is it possible to let uipath know itself to paste to the first row that is empty?
so instead of 152 to let uipath chearch self for empty row.
You can easily remove the headers from the table while reading the data in Read Range.
To do this just uncheck the Add Headers Property in the Read Range Activity as shown below:
You can use “Remove DataRow” activity before “append range” activity.
In “Remove DataRow” activity properties provide the DataTable variable and RowIndex as ‘0’. So it will remove the header and append the rest of the data’s.
Note: Uncheck ‘Add Headers’ in read range(DataTable which you need to append) activity properties.