Suppressing display when running macros.

H

Harry Audus

How can I suppress the display of operations (ie stop flashing) when running
a macro, especially one that accesses more than one worksheet?
 
N

Norman Jones

Hi Harry,

Try:

Application.ScreenUpdating = False

'Your Code

Application.ScreenUpdating = True
 
Top