Loop the flow without "for", "while" or "invoke"

I can only use these for the flow:Use Application/Browser, Click, Keyboard Shortcuts, Type Into, Get From Clipboard, If, Assign, Terminate Workflow.
How am Is supposed to read excel file, row by row, until A cell is empty?
Or should I just copy paste my sequence? (3 rows of excel…)

Hi @amizi

With out using the Looping activities you can’t iterate the each row in the excel.

If you be more specific what is your requirement then only we can give the proper solution for your query.

Hope you understand!!

@amizi,

Use Find First/Last Data Row activity. This will give you last row. Iterate using while loop till last row number.

Thanks,
Ashok :slightly_smiling_face:

hi there,

I do not know your level of experience with UiPath but you can archive this by using the flow chat and create a counter variable that you will increment to align with a cell number.

you may find these helpful:

Studio - Flowcharts (uipath.com)

Option Two:

Using the REFramework, you can: read the excel file in the initialization and Change the transatcionirtem type from Queue to DataRow and you can add all your actions in the Process state, see example below:

RE Framework with Data Table: Part 3 | Transaction Item as Data Row | UiPath Learner - YouTube

Hi @amizi

  • Use a combination of activities like Type Into to navigate through cells and Get From Clipboard to retrieve data.
  • Use an If activity to check a condition, such as checking if the current cell is empty to terminate the loop.
  • Based on the condition, either continue the workflow (by calling the sequence again) or terminate it.

Hope it helps!!