Pause a VBA Module

  • Thread starter Thread starter Rick Campbell
  • Start date Start date
R

Rick Campbell

I'm trying to insert a pause in a module that will allow me to work on the
worksheet before pressing OK to resume the module. Can get the pause to
work, but can't get working on the worksheet to work. Any help would be
appreciated.

TIA

Rick
 
Rick,

Try using the application.ontime event to fire a new macro (or the
continuation) of the routine.

HTH.

Paul M.
 
Rick -

My approach is often to build two macros. At the end of the first, I
have it put a command bar button or worksheet button that says Click
Here When Ready. This button runs the second macro.

- Jon
 
Back
Top