View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Gary''s Student Gary''s Student is offline
external usenet poster
 
Posts: 11,058
Default Screen flash while running macros

Sub demo()
Application.ScreenUpdating = False
' your code goes here
Application.ScreenUpdating = True
End Sub

--
Gary''s Student - gsnu200759


"Jay" wrote:

I have a macro set up to run when you enter a worksheet. This macro
serarches out blank cells & hides the row that they are in. Is there a way
to prevent the screen from flashing while this macro is running?