Eliminate screen flashing while running a macro using VBA in Microsoft Excel.

A

abbeville

Can someone please help me? I built a workbook on my desktop with th
intention of using it as a template. I entered the code to eliminat
screen flashing & it worked fine on the desktop but as soon as I save
it as a template it slowed down & it still flashed to some extent
 
F

Frank Kabel

Hi
try
sub foo()
application.screenupdating = false
'your code
application.screenupdating = True
end sub

If you already have used this you may post the relevant part of your
macro that still flashes
 
Top