Hello everyone,
I am working on a project and want to know if there is any option which I could use to remove the row in the input file after the transaction is completed? If so, could someone lemme know how to do it in UiPath Studio X.
Hello everyone,
I am working on a project and want to know if there is any option which I could use to remove the row in the input file after the transaction is completed? If so, could someone lemme know how to do it in UiPath Studio X.
If you want to remove the every first row after transaction completed in a datatable.
- Assign -> dt = dt.AsEnumerable.Skip(1).copytodatatable
The above expression used to delete the first row in the datatable and store remaining rows in the same datatable.
Hope it helps!!
After performing the necessary actions for each transaction, add a Remove Data Row activity to remove the current row from the DataTable.
Excel Read Range:
For Each Row:
If:
Remove Data Row:
Excel Write Range:
Welcome to the community
If you want to remove from an excel…you can use delete rows activity and give the row number you want to remove
If you dont know the row number you can use a filter activity first and filter the excel with a value from a unique values column and then use delete rows and select visible rows so that the filtered row is deleted
Hope this helps
Cheers