Hey guys, I want to ask you if the following project is feasible:
I want a loop for excel rows. The loop should start with row no. 9. If there is a value in column A the bot should go on and copy some cells of the row. If the cell is empty the bot should go on to the next row …
If this is feasible I would be happy about any developing hints
=> Use the Use excel file activity and pass the excel file path.
=> Inside use excel file insert the For each excel row activity to iterate the excel rows.
=> Inside for each use If condition and write the condition
Condition → CurrentIndex>=9 and CurrentRow(“Column name”).equals(“”)
In then block don’t give any activity.
In else block give the activities that you required to move forward.