Found an answer to question #1 online,
Here is a macro written to open closed files (all in one folder) and then print, close, move to the next file....etc...
Option Explicit
Private Sub PrintAllWorkbooks()
Dim wb As Workbook
Dim ws As Worksheet
Dim MyFolder
Dim I As Long
Application.EnableEvents = False
Application.DisplayAlerts = False
Application.ScreenUpdating = False
MyFolder = GetFolder
If MyFolder = vbNullString Then
MsgBox "No folder selected, stopping procedure.", vbCritical
Exit Sub
End If
With Application.FileSearch
.NewSearch
.LookIn = MyFolder
.FileType = msoFileTypeExcelWorkbooks
.Execute
For I = 1 To .FoundFiles.Count
Set wb = Workbooks.Open(.FoundFiles(I))
For Each ws In wb.Worksheets
ws.PrintOut
Next ws
wb.Close
Next I
End With
Application.EnableEvents = True
Application.DisplayAlerts = True
Application.ScreenUpdating = True
End Sub
Private Function GetFolder() As String
Dim ff As Object
Set ff = CreateObject("Shell.Application"). _
BrowseForFolder(0, "Please select a folder", 0, "C:\Documents and Settings\jwright\My Documents\NDT\UT Inspection\UT Reports\Florham Park 10-012\")
If Not ff Is Nothing Then
GetFolder = ff.Items.Item.Path
Else
GetFolder = vbNullString
End If
End Function
Bookmarks