For Each Row in DataTable: Iterate in x steps

Hi

I am using the “For Each Row” activity
For each row in my data table, I want to iterate the 2nd, 4th, 6th, … rows only

Is there a way to do that?

Thank you

@Anonymous2 Don’t use for each row if you know the index number
Just use dt.row(rowindex).item(columname)

1 Like

@Anonymous2
you can use a for each activity (not a for each row) and access by index
the indexlist feed to the for each can be created like this:

1 Like