Nested While using Flowchart

Hello All,

Requesting for a flow chart design for a nested while condition. Please find the scenario below.

  1. Initialize a counter(let’s say “PageCount”) as 5
  2. Do while (when page count>0)
  3. Get a count(let’s say “Row Count”)
  4. While (Row count<10)
  5. Perform some action
  6. Decrease Row Count
  7. Exit While loop
  8. Decrease Page Count
  9. Exit Do while

In this case, I am looking for a flow chart solution, where Do while and While sequence could be separated (i.e.) with out nesting.

Please help, if we could perform this.

Thanks in Advance.

@shahidh.aqeel.shahul ,

Put your loop login into separate workflows and invoke those workflows.

You could also use a state machine if you want to keep it “visual”
Studio - State Machines (uipath.com)