Like so, you need a macro to feed in a folder path to the main macro which opens all the files in that path, then searches for folders IN that path and calls itself again, deeper and deeper recursively until it runs out of files/folders. This also shows you one way to close the files you've opened.
Option Explicit
Sub LoopStarter()
Call Looper("\\example\1 January\") 'put initial folder here to initiate
End Sub
Private Sub Looper(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, SubFldr As Object, fNAME As String
fNAME = Dir(sSourceFolder & "*.xlsx") 'get first file from folder
Do While Len(fNAME) > 0 'do this loop if file is found
Workbooks.Open sSourceFolder & fNAME, True 'opens found file, updates links
ActiveWorkbook.Close True 'closes opened file, saving changes
fNAME = Dir 'get next file from same folder
Loop
'start looping deeper into same folder looking for more files
Set Fldr = CreateObject("scripting.filesystemobject").Getfolder(sSourceFolder)
For Each SubFldr In Fldr.SubFolders
Looper SubFldr.path & "\" 'calls this same macro again with new deep folder
Next
End Sub
Bookmarks