VBA: Turn off Screen Updating
As cool as it looks watching your macro manipulate the screen, you can help it run faster if you turn off Screen Updating.
1. At the beginning of your code put this line:
Application.ScreenUpdating = False
2. At the end of your code put this line:
Application.ScreenUpdating = True
Can't get the tutorial to work for you? Need help with your code?
Get answers right away at our AE Excel Support Forums!
Get answers right away at our AE Excel Support Forums!



Hey, thanks for easy & simple explanation. I had a problem with data import and graph updating after every single record…
Very well written article, thx for sharing.