How to stop Excel from animating range selections?

  • Thread starter Thread starter gstremer
  • Start date Start date
G

gstremer

Hello,

In my VBA programme I select a lot of different ranges. At presen
Excel shows these range selections on screen. This makes that the use
gets to see Excel jumping from one sheet to another during th
programme's execution.

How can I switch off this behaviour?

Thanks and rgds,

Gerr
 
Hi
Application.ScreenUpdating = False

You might also think about not doing the selections
e.g Range("A1").Select
Selection.Value = 3

can be shortened to
Range("A1").Value = 3

regards
Paul
 
Paul,

Put this line at the beginning of your code:

Application.ScreenUpdating = False

change false to true to switch back on again

Regards

Michael Beckinsale
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top