Similar to this post
Iterate through spreadsheets in a folder and collect a value from each
I am trying to do the same but rather than a single value, I would like to loop through up to 52 different arrays, e.g (using pseduo code) the path being external
For each workbook in path
While week < 52
week1 = path.workbook.sheet1.range(A1:J20);
consol.range("A" & row & ":J " & row2) = week1
row = row + 20
row2 = row2 + 20
week++
Wend
Next
Is this even possible?