In a folder I have different Excel Workbooks like this:
Exercise1
Exercise2
Exercise3
...
ExerciseN
I want to open all files (all .xls) in the folder in the same Excel workbook on different sheets.
I suppose it would be something like this, but not:
Sub Macro1()
For i = 1 To ??
Workbooks.Open Filename:="C:\Exercisei.xls"
Next i
End Sub