Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() 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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() 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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
tab order for multi-range selections | Excel Discussion (Misc queries) | |||
tab order for multi-range selections | Excel Worksheet Functions | |||
Apply formula to a range with multiple selections | Excel Programming | |||
Animating a Menu Bar | Excel Programming | |||
Free animating ActiveX control | Excel Programming |