Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3
Default Suspend window while Excel VBA macro is executing

How do I suspend the application window from showing progress while an Excel
VBA macro is executing? Tha macro involves a lot of jumping between
worksheets, and I suspect that the updating of windows takes a lot of time.
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 74
Default Suspend window while Excel VBA macro is executing

typethis code beginning of the code statements

Application.ScreenUpdating = False

at the end of the statemnets before end sub type

Application.ScreenUpdating = true




Knut S <Knut wrote in message
...
How do I suspend the application window from showing progress while an

Excel
VBA macro is executing? Tha macro involves a lot of jumping between
worksheets, and I suspect that the updating of windows takes a lot of

time.




  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 80
Default Suspend window while Excel VBA macro is executing

Knut,

Put this at the beginning of your code:

Application.ScreenUpdating = False


and then this at the end:

Application.ScreenUpdating = True

HTH,
Nikos

"Knut S" <Knut wrote in message
...
How do I suspend the application window from showing progress while an

Excel
VBA macro is executing? Tha macro involves a lot of jumping between
worksheets, and I suspect that the updating of windows takes a lot of

time.


  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3
Default Suspend window while Excel VBA macro is executing

Thanks. It helped a lot!
Knut

"Nikos Yannacopoulos" wrote:

Knut,

Put this at the beginning of your code:

Application.ScreenUpdating = False


and then this at the end:

Application.ScreenUpdating = True

HTH,
Nikos

"Knut S" <Knut wrote in message
...
How do I suspend the application window from showing progress while an

Excel
VBA macro is executing? Tha macro involves a lot of jumping between
worksheets, and I suspect that the updating of windows takes a lot of

time.



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3
Default Suspend window while Excel VBA macro is executing

Thanks. It helped a lot!!
Knut

"R.VENKATARAMAN" wrote:

typethis code beginning of the code statements

Application.ScreenUpdating = False

at the end of the statemnets before end sub type

Application.ScreenUpdating = true




Knut S <Knut wrote in message
...
How do I suspend the application window from showing progress while an

Excel
VBA macro is executing? Tha macro involves a lot of jumping between
worksheets, and I suspect that the updating of windows takes a lot of

time.





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
executing a macro within another brian Excel Discussion (Misc queries) 3 July 5th 06 01:22 AM
What macro is executing? Ken Loomis Excel Programming 3 October 13th 04 05:39 AM
Executing an older excel 4.0 macro pgerrish Excel Programming 0 April 22nd 04 05:41 PM
Excel VBA - Executing external programs in an excel macro schumacker Excel Programming 1 February 24th 04 12:17 PM
Suspend/resume running of a macro Peter[_20_] Excel Programming 3 February 9th 04 01:49 PM


All times are GMT +1. The time now is 06:41 PM.

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

About Us

"It's about Microsoft Excel"