Macro does not offer "Continue" option

  • Thread starter Thread starter CMD
  • Start date Start date
C

CMD

I am trying to create a macro that will attempt all actions, even if the
macro is unable to complete certain actions along the way. When my macro is
unable to find an object, however, the Action Failed message box only gives
me the option to "Halt" the macro. The "Step" and "Continue" options are
greyed out.

Does any one now how I can change my settings or alter the macro so that
failed actions do not halt the entire macro?

Thanks,
CMD
 
Try using a Condition to bypass the action that will fail.
If condition is met then perfom the action. If not met then it will not
fail as it does not attempt to do the action.
 
Back
Top