View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Rich J Rich J is offline
external usenet poster
 
Posts: 16
Default Pausing a macro to select a cell

try putting code in like this at the point where you need a break in the cod

Dim Start as Varian


Start = Time
Do While Timer < Start + 5 ' make the 5 larger if you need more tim
DoEvents ' Yield to other processes
Loo