Excel - Concatenate multiple tables

Issue

I want to concatenate 4 tables having the same structure, but located in different directories. What will change is the number of row to be imported (per month) and the contents of columns. How can this be implemented in VBA?

Solution

Try this:

Sheets("sheet to be copied").Select 'selection of the data field Application.Goto Reference:="R2C1" Range("A2:A2").Select Range(Selection, Selection.End(xlToRight)).Select 'select to the left Range(Selection, Selection.End(xlDown)).Select ' select downward Selection.Copy 'copy selection

Thanks to PHILOU10120 for this tip.

Leave A Comment