We can take that main macro and turn it into a subroutine that is called by another macro. We feed in the folders to the macro and work our way deeper and deeper until all folders are processed.
Then we create a main macro to set things in motion... create a blank workbook and feed in the main folder name. That is fed to a "loop" macro that first processes that main folder, then starts detecting folders and restarting the "loop" again in each folder, deeper and deeper until all are processed.
Option Explicit
Dim BaseWks As Workbook, rNUM As Long
Sub MainMacro()
Dim calcmode As Long
With Application ' Set various application properties.
calcmode = .Calculation
.Calculation = xlCalculationManual
.DisplayAlerts = False
.ScreenUpdating = False
.EnableEvents = False
End With
' Add a new workbook with one sheet, set the first rownumber to use
Set BaseWks = Workbooks.Add(xlWBATWorksheet).Worksheets(1)
rNUM = 1
'enter the main path here
Call LoopController("C:\Estimate Collation")
With Application ' Restore the application properties.
.ScreenUpdating = True
.EnableEvents = True
.Calculation = calcmode
.DisplayAlerts = True
End With
End Sub
Private Sub LoopController(sSourceFolder As String)
'This will loop into itself, first processing the files in the folder
'then looping into each subfolder deeper and deeper until all folders processed
Dim Fldr As Object, FL As Object, SubFldr As Object
Call MergeAllWorkbooks(sSourceFolder & Application.PathSeparator)
Set Fldr = CreateObject("scripting.filesystemobject").Getfolder(sSourceFolder)
For Each SubFldr In Fldr.SubFolders
LoopController SubFldr.Path
Next
End Sub
Private Sub MergeAllWorkbooks(MyPath As String)
Dim FilesInPath As String, MyFiles() As String
Dim SourceRcount As Long, FNum As Long
Dim mybook As Workbook, BaseWks As Worksheet
Dim sourceRange As Range, destrange As Range
If Right(MyPath, 1) <> "\" Then MyPath = MyPath & "\" 'Add a slash at the end of the path if needed.
FilesInPath = Dir(MyPath & "*.xl*")
FNum = 0
Do While Len(FilesInPath) > 0 ' Fill the myFiles array with the list of Excel files in the search folder.
FNum = FNum + 1 ' increment max items for array
ReDim Preserve MyFiles(1 To FNum) ' expand array
MyFiles(FNum) = FilesInPath ' insert filename into array
FilesInPath = Dir() ' get next filename
Loop
' Loop through all files in the myFiles array.
If FNum > 0 Then
For FNum = LBound(MyFiles) To UBound(MyFiles)
Set mybook = Nothing
On Error Resume Next
Set mybook = Workbooks.Open(MyPath & MyFiles(FNum))
On Error GoTo 0
If Not mybook Is Nothing Then
On Error Resume Next
' Change this range to fit your own needs.
With mybook.Worksheets("2013 Data Loader")
Set sourceRange = .Range("Data2013")
End With
If Err.Number > 0 Then
Err.Clear
Set sourceRange = Nothing
Else
' If source range uses all columns then
' skip this file.
If sourceRange.Columns.Count >= BaseWks.Columns.Count Then
Set sourceRange = Nothing
End If
End If
On Error GoTo 0
If Not sourceRange Is Nothing Then
SourceRcount = sourceRange.Rows.Count
If rNUM + SourceRcount >= BaseWks.Rows.Count Then
MsgBox "There are not enough rows in the target worksheet."
BaseWks.Columns.AutoFit
mybook.Close savechanges:=False
GoTo ExitTheSub
Else
' Copy the file name in column A.
With sourceRange
BaseWks.Cells(rNUM, "A"). _
Resize(.Rows.Count).Value = MyFiles(FNum)
End With
' Set the destination range.
Set destrange = BaseWks.Range("B" & rNUM)
' Copy the values from the source range
' to the destination range.
With sourceRange
Set destrange = destrange. _
Resize(.Rows.Count, .Columns.Count)
End With
destrange.Value = sourceRange.Value
rNUM = rNUM + SourceRcount
End If
End If
mybook.Close savechanges:=False
End If
Next FNum
BaseWks.Columns.AutoFit
End If
ExitTheSub:
End Sub
Bookmarks