pause/resume macro

  • Thread starter Thread starter rml
  • Start date Start date
R

rml

I can I pause a macro and then resume it? I have a macro
that runs an app that deletes two files. Then, the macro
outputs those file again. My problem is that it deletes
one but not the other. I believe it is a timing issue.

Thanks.
 
You can't *pause* a macro. Instead, either separate them into two macros,
where the second doesn't run until some condition exists that means that the
first one is done, or use VBA code where you have more control over the
process.
 
Back
Top