How to skip the rest of the sequence and continue foreach row?

My sequence looks like this:

  1. Read customer ID from an excel file
  2. Use foreach row to copy and paste the ID into search box and search for customer data
  3. Scrape designated data and export it to text file
  4. Repeat the whole process one ID by another

In most cases it works fine but when there is a special customer who has no valid data occurs, the sequence fails. What activity do I need to put in in order to skip the rest of the sequence, jump back to the beginning and use the next customer ID to proceed? Thank you.

If you can validate the data before proceeding then use an IF activity, if not then use a TRY CATCH.

TRY CATCH works for me.
Thanks a lot!