Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default How to stop Excel from animating range selections?


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

--
gstreme
-----------------------------------------------------------------------
gstremer's Profile: http://www.excelforum.com/member.php...fo&userid=3589
View this thread: http://www.excelforum.com/showthread.php?threadid=55685

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 789
Default How to stop Excel from animating range selections?

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

gstremer wrote:
Hello,

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

How can I switch off this behaviour?

Thanks and rgds,

Gerry


--
gstremer
------------------------------------------------------------------------
gstremer's Profile: http://www.excelforum.com/member.php...o&userid=35897
View this thread: http://www.excelforum.com/showthread...hreadid=556850


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 274
Default How to stop Excel from animating range selections?


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

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
tab order for multi-range selections Phil Excel Discussion (Misc queries) 1 August 10th 09 04:01 AM
tab order for multi-range selections Phil Excel Worksheet Functions 1 July 30th 09 05:57 PM
Apply formula to a range with multiple selections [email protected] Excel Programming 4 December 22nd 05 05:54 PM
Animating a Menu Bar Jan G. Thorstensen Excel Programming 3 October 22nd 05 05:02 PM
Free animating ActiveX control Ben Taylor Excel Programming 0 July 21st 03 11:00 AM


All times are GMT +1. The time now is 11:24 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"