View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Duncan[_5_] Duncan[_5_] is offline
external usenet poster
 
Posts: 290
Default Macro - Prevent screen refresh

Bharath:

Application.ScreenUpdating = False
'...
'Your code in Here
'...
Application.ScreenUpdating = True



HTH
Duncan


Bharath Rajamani wrote:
Is there a way to prevent the workbook screen display getting refreshed as a
macro runs, and make the macro run in the background without refreshing the
worksheet display.

Maybe it runs faster that way.


Rgds,