How to delete from DataTable the rows in a chunk for a certain condition?

@tomato25
we had done several projects in which we did such or very similar filterings
The main approach was

  • calculate Indexes of the ranges that are too keep
  • fetch a range with the help of Skip and Take
  • use Tuples to get kept different DataTypes for the Markers

We had done with the use LINQ as we were able to do The steps with less activities. But I reduce for your showcase the complexity in order to get it easier managed and maintained in case of you know less about LINQ. Any remaining LINQ can also be mapped to plain essential UiPath Activities, but then we need a few more steps

Have a look on this prototype doing this filtering with a reduced test data set
tomato25.xaml (14.0 KB)