Hello all,
I am trying to remove the very first 4 rows in a data table using the filter data table activity.
How would I write it?
Hello all,
I am trying to remove the very first 4 rows in a data table using the filter data table activity.
How would I write it?
Why not use Remove Data Row activities?
https://docs.uipath.com/activities/docs/remove-data-row
interesting, but how would i use the input, datatable i know, but for the row and rowindex i dont get.
@dvn If you just have to remove the First 4 rows with no condition involved, You can use this Assign Statement:
DT = DT.AsEnumerable.Skip(4).CopyToDatatable