IF statement - Looping
Hey everyone,
I have a project, currently it already has a few else/if statements, but wondering If the bot should fail on anything through out is there a Loop option I could put from the start to end that if it fails to stop exit out of everything and start fresh? I need to also put a statement to send an email alert.
many thanks
Comments
Perhaps you could reword your question to clarify.
But you have options in loops, to Exit Loop - so it will not continue looping any more. Continue Loop, makes it so you don't need to nest lots of if statements, so if the loop condition is not met, it will iterate again.
Also if you have error handling, you can Stop the Task or continue it. It's on the error handler you can send emails.