View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Jim Thomlinson[_4_] Jim Thomlinson[_4_] is offline
external usenet poster
 
Posts: 1,119
Default turning on/off cursor movement during VBA execution

place this at the beginning of your code
application.screenupdateing = false

and place this at the end
application.screenupdateing = true

--
HTH...

Jim Thomlinson


"ktisqj" wrote:

How do I turn on/off cursor movement during macro execution?