Need to initialize datatable with index 1

Hi ,

I have to read a column starting from index 1.By default for each loop starts with index 0 .How can i change the index .

you can increment a variable in the loop and in the for each activity you verify if variable=0. In the THEN section you put a Continue activity and in the ELSE section you put your activities…

Here-s a sequence example Main.xaml (8.2 KB)

Here-s a flowchart example Flowchart.xaml (11.3 KB)

In the sequence you use row(“Column Name”) to use data.
In the Flowchart you use dtYourTable.Rows(currentRow).Item(“Column Name”) to use data.

Hope it helps!