Category Archives: Excel

Screen updating in Excel

The property ScreenUpdating of the object Application tells if the screen is being updated or not. Normaly you have a kind of source-code like Sub Foo() Application.ScreenUpdating = False ‘ do something here … Application.ScreenUpdating = True End Sub Now … Continue reading

Posted in Excel, VBA | 2 Comments