I am trying to access cell F7 of all workbooks which are contained in the folder "CustomerFolder". The catch is that I do not know the names of the workbooks which are in the folder "CustomerFolder".
Normally you would use
Application.Goto Workbooks("CustomerFolder/Customer1.XLS").Sheets("Sheet1").Range("F7")
to access cell F7 in the workbook "Customer1.XLS".
However, I do not know the names of the workbooks that I am trying to access beforehand.
I am completely new to VBA and I am wondering how to solve this problem? Or whether this is even possible.