I can take care of the rest of the programming, I just cannot seem to find a program to do the folder cycling I am looking for
This code does the cycling 
Amend to match your requirements
I set up this structure
C:\TestArea\Mold1\Inspection Plan.xlsx
C:\TestArea\Mold2\Inspection Plan.xlsx
C:\TestArea\Mold3\Inspection Plan.xlsx
Each file named Inspection Plan.xlsx opened in sequence with the code below:
Sub LoopFolders()
Dim FileSystem As Object, HostFolder As String
HostFolder = "C:\TestArea"
Set FileSystem = CreateObject("Scripting.FileSystemObject")
DoFolder FileSystem.GetFolder(HostFolder)
End Sub
Sub DoFolder(Folder)
Dim SubFolder, File, wb As Workbook
For Each SubFolder In Folder.SubFolders
If Left(SubFolder.Name, 4) = "Mold" Then
For Each File In SubFolder.Files
If File.Name = "Inspection Plan.xlsx" Then
Set wb = Workbooks.Open(SubFolder & "\" & File.Name)
' insert code here to replace File 1 and File 2 in header & footer
wb.Close
End If
Next File
End If
Next SubFolder
End Sub
Bookmarks