Home |
Search |
Today's Posts |
#10
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You could try the following:
In as much as it is purely asthetic, I prefer to use the following which keeps everything together in a nice collection rather than address each line of: Application This, or Application That, you can use the With statement and include each point. You would use the following to turn off. With Application .Calculation = xlCalculationManual .ScreenUpdating = False .EnableEvents = False .DisplayAlerts = False .AlertBeforeOverwriting = False End With Then use this to reset them when exiting the routine. With Application .Calculation = = xlCalculationAutomatic .ScreenUpdating = True .EnableEvents = True .DisplayAlerts = True .AlertBeforeOverwriting = True End With HTH Mick. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
import multiple text files into single sheet separate column | Excel Programming | |||
Combining multiple worksheets into a single master sheet | Excel Programming | |||
Copy Range From Multiple Worksheets to a Single Worksheet | Excel Discussion (Misc queries) | |||
macro: copy multiple workbooks to multiple tabs in single book | Excel Programming | |||
opening multiple .txt files from multiple folders | Excel Discussion (Misc queries) |