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.