Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
In a macro, I have a loop to copy rows from a workbook and
paste it to another workbook, so there are a lot of "flashing" between screens in the run. Someone said if I can use some kind of "echo off" command to aviod flashing screens, it would cut down the run time a lot. Is there such command that I can use in EXCEL macro?? Thanks. Lee |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Lee,
Use the ScreenUpdating property to prevent the screen from updating. E.g., Application.ScreenUpdating = False ' your code here Application.ScreenUpdating = True -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Lee S." wrote in message ... In a macro, I have a loop to copy rows from a workbook and paste it to another workbook, so there are a lot of "flashing" between screens in the run. Someone said if I can use some kind of "echo off" command to aviod flashing screens, it would cut down the run time a lot. Is there such command that I can use in EXCEL macro?? Thanks. Lee |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Echo Contents of ActiveCell into a Text box. | Excel Discussion (Misc queries) | |||
Range to echo format (hilite/fontcolors) of sister range? | Excel Worksheet Functions | |||
VBA equivalent to "echo off" | Excel Discussion (Misc queries) | |||
no data echo in fields | Excel Discussion (Misc queries) | |||
Macro beginner - Echo | Excel Discussion (Misc queries) |