A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
The post I'm looking at doesn't have leading dots in front of the
.displayalerts, .screenupdating and .caculation.
Maybe you didn't include them in your real code???
With Application
.DisplayAlerts = False
.ScreenUpdating = False
.Calculation = xlCalculationManual
End With
petedacook wrote:
Hello,
The beginning of t he code I am writing turns off screen updating, but the screen still updates as the code runs. can anyone tell me what I am missing?
This is the snipet of code that rusn off screen updating:
' Set Application
With Application
DisplayAlerts = False
ScreenUpdating = False
Calculation = xlCalculationManual
End With
--
Dave Peterson