How to exit from a specific sequence and continue on the next sequence without using Try Catch block?

Hi,

I have several sequences that are executed one by one.
In the 3rd sequence, I read an excel file and store it in a data table. After that, I check how many rows I got in the data table. If there are no rows in the data table, I need to exit from the 3rd sequence and continue executing the 4th sequence.

How can I achieve that?
Thanks in advance. :pray:

you can e.g. use an if acitvity and let execute the bot only if Condition rows.Count > 0 is met

@bp777
Use switch case and followed by if else .