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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top