Remove first 4 rows in with filter data table

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.

If you want to remove first 4 rows, you can do something like


(Ignore the commented part)

@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