I have one "main file" and I want to copy data from multiple Excel workbooks in Testing folder.
I made a macro and it is opening each file and pasting into main file.
It is creating an individual sheet every time in the main file.
I want it to paste data in the same sheet after finding the last row in the main file.
Copy to clipboard
Sub ConslidateWorkbooks1()
Dim FolderPath As String
Dim Filename As String
Dim Sheet As Worksheet
Application.ScreenUpdating = False
FolderPath = Environ("userprofile") & "\Desktop\Carrier\Test\"
Filename = Dir(FolderPath & "*.xls*")
Do While Filename <> ""
Workbooks.Open Filename:=FolderPath & Filename, ReadOnly:=True
For Each Sheet In ActiveWorkbook.Sheets
Sheet.Copy After:=ThisWorkbook.Sheets(1)
Next Sheet
Workbooks(Filename).Close
Filename = Dir()
Loop
Application.ScreenUpdating = True
End Sub
Sheet.Copy
, look atRange.Copy
or otherRange
methods to copy the data over. TheSheet.Copy
is the line that is creating a new sheet every time. After you copy theRange
to the sheet, just find thelastRow
so you know where to copy the next set of data. – PeterT