VBA: Turn off Screen Updating

Automate Excel

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

Related posts

One Response

  1. VBA: Remove Blank Rows Says:

    [...] following macro will remove blank rows without any sorting (turn off screen updating to go [...]

Leave a Comment

Please note: Comment moderation is enabled and may delay your comment. There is no need to resubmit your comment.