For....Loop
Hi -
I need to process every entry in an array. So I use the for...loop to do so. And inside the for..loop, I have several steps to process for each entry. However, if any of steps fails, I don't want to continue processing the rest of steps for that particular entry. But I want to go on and process next entry in the array with all the steps in the for...loop. How do I go about skipping rest of steps and go to the next entry? I read somewhere about having a label at the beginning of the statement where I can break out. But can't find it. Any solution is greatly appreciated.
Thanks.
Kathy
|