VBA: Turn off Screen Updating

August 14th, 2004 | Categories: VBA | Tags: , ,

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
  1. 1 trackbacks
    1. 2008/10/24 - VBA: Remove Blank Rows