Skip first record from datatable

Hi all,

I have a datatable with 5 records and i am iterating through it but while iterating i want to skip the first record and get the values from the second record.

Can anyone help me onthis

Hi @vishal_nachankar

try this - dtTable datatable variable

in assign

dtTable = dtTable.asenumerable.skip(1).copytodatatable

And after that use for each loop it will contains only 4 records…

1 Like

In the For Each Row activity, put a variable into the Index property. Then use an If activity that only runs your statements when “NOT yourIndexVariable = 0”