Start wirh index in loop

Hi, ı want to start index with loop for example ı have excel sheet and ı want to read 3. row not first index or ı can say ı want to determine start and end index in collection(loop).

thank you

Hi @sedayngl_sedayngl33 ,

In the For Each Activities, you have the option of declaring a counter variable as shown in the screenshot below →

You can add 3 to it and pass it into whatever activity you want like so →

Would that help?

Kind Regards,
Ashwin A.K

on excel,
just modify the range eg A3 doing an offset

on datatable:
For each Activity - (Not for each row) | TypeArgument: Datarow
and use skip, take like: dtDataVar.AsEnumerable.Skip(3).Take(5)

it is ommiting the first 3 rows and picks up row: 4,5,6,7,8

thank you for your response