If error then

Hi,

I would like to know how to use “if” to do the next sequence:

If the sequence has one error then rename the file and if not then continue with the next step.

In fact, I would like to know If I can do the next sequence:

If one specific “click Button” = Error then rename the file and if not then continue with the nest step

Thank you so much

You can handle errors using a Try/Catch activity. Your error processing will be done in the Catch block, whereas your usual processing will be in the Try block.

Thank you so much