This should work, although it displays as "running" after it finished everything... not sure why. Any feedback appreciated.
edit: please note that the macro doesn't print out the workbook in which you store the code.
Sub Print3()
'
' MacroGRP2 Macro
' Macro recorded 01/06/2012 by jpdutch
' Macro altered 01/22/2013 for Excel 2007 compatibility
'
' This starts the print job
Dim waitTime, newHour, newMinute, newSecond
Dim Wbk As Workbook
Dim MyPath As String
Dim MyFile As String
MyPath = ThisWorkbook.Path
MyFile = Dir(MyPath & "\" & "*.xls")
Do While MyFile <> ""
If MyFile <> ThisWorkbook.Name Then
Set Wbk = Workbooks.Open(MyPath & "\" & MyFile)
' This will print the document
Wbk.PrintOut copies:=1, collate:=True
' Wait
newHour = Hour(Now())
newMinute = Minute(Now())
newSecond = Second(Now()) + 7
waitTime = TimeSerial(newHour, newMinute, newSecond)
Application.Wait waitTime
Wbk.Close False
End If
MyFile = Dir
Loop
End Sub
Bookmarks