Printing

C

Chris Smith

If you're closing the workbooks in succession using

ActiveWorkBook.Close True,

Just put:

With Application
.ScreenUpdating = False
.DisplayAlerts = False
End With

' Your Code

With Application
.ScreenUpdating = True
.DisplayAlerts = True
End With

Hope that helps,

Smitty
 
Top