Passing to new argument

How do you pass from an if statement that is nested within a for-loop?

For example, if an order queries, continue on with the process for that order, else continue on to the next order.

In your case just keep the processing side in the ‘then side’ and just kepp the other side empty.

The processing or the order will only happen when the condition is true then, otherwise it will just move on to the next item.

image

2 Likes

perfect! I had my logic right, but i wasnt sure how to implement within uipath! thank you :slight_smile:

1 Like