pause/resume macro

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.
 
K

Ken Snell

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.
 
Top