I am doing a data entry task for which I am using For each row activity. On Initiation the bot will read row 2 , do an operation. After doing all the operation for column A and B (for row 2) it will check for "**Cell in next row for column A ** i.e. in row no.3. I have given a condition that if the cell in column A for (Currentrow +1) is Blank make the data entry.
As you could see data entry for now already is already done. So now I want the bot to skip to row no. 4 and begin the operation.
@Aditya_Bhalerao
PFA
So while processing row 2 you are processing row 3 aslo. So you want to skip the row for which you already made data entry (row 3) and continue With (row 4)? SkipRow.xaml (16.2 KB)
No, what I mean is (Refer Image) if we are on Row 2 the there is no data in next row (Refer image :- Lets say row 3 and column A ) , the certain operation should be done for (Current Row +1) row. Now since I am using For each row activity the bot reads the same again (i.e. Row 3).I want the bot to go to row 4 and do the same operation.
@Aditya_Bhalerao
Hi. You cannot prevent reading the next row. It will always read the next row. Just you need to put conditions so that it does not do the operation for that row. If you don’t want to read the next row you should not use for each loop. Instead you should go with assigning a data row and increment the row index.