Hi,
i need to start my for each sequence in the last row processed that i have in a txt file.
example…the txt have number 5 saved…i want the sequence begins at row 6.
Any idea please?
Tanks!
Hi,
i need to start my for each sequence in the last row processed that i have in a txt file.
example…the txt have number 5 saved…i want the sequence begins at row 6.
Any idea please?
Tanks!
Add an If statement at the beginning of the body of the For Each Row loop with condition RowIx <= CInt(LastrowValue)
, where RowIx is the index of the For Each Row loop. You’ll need to create RowIx and set it as the index of the For Each Row loop in the activity’s properties.
Inside of the If statement, add a Continue activity.
This will skip all rows until you reach the one where you left off.
Yes, that’s the way.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.