Loop through directory and copy data from same tab in each

Samson92

New Member
Joined
May 27, 2019
Messages
18
I have a folder which contains various excel sheets, some xlslx and some xlsm, in each of these sheets there are multiple tabs but each one has one called 'Data'. The data starts in Column A row 6, and goes to BE6. This is consistent throughout each file in the directory, but the number of rows varies depending on the file.

What i'd like to have a master sheet which loops through every excel file in a directory ("G:\Team\Corporate\July"), opens them and goes to the 'Data' tab in each, and copies from row 6 to the last line with data, and then copies them to a tab called 'Master' in the workbook the VBA code is run from. I would like the first set of data to also be paste in row 6, so from A6:BE6, and then each subsequent time data is copied, for it to be pasted on the next empty line.

How would this best be done?

Thanks.
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
How about
Code:
Sub samson92()
   Dim Mws As Worksheet
   Dim Pth As String, Fname As String
   
   Set Mws = ThisWorkbook.Sheets("Master")
   Pth = "G:\Team\Corporate\July\"
   Application.ScreenUpdating = False
   Mws.Rows("6:" & Rows.Count).Clear
   Fname = Dir(Pth & "*.xls*")
   Do While Fname <> ""
      With Workbooks.Open(Pth & Fname)
         With .Sheets("Data")
            .Range("A6:BE" & .Range("A" & Rows.Count).End(xlUp).Row).Copy Mws.Range("A" & Rows.Count).End(xlUp).Offset(1)
         End With
         .Close False
      End With
      Fname = Dir()
   Loop
End Sub
 
Upvote 0
Thank you, this is exactly what I need, works like a charm. Is it at all possible to alter it to run through two directories one after the other?
 
Upvote 0
Yup, like
Code:
Sub samson92()
   Dim Mws As Worksheet
   Dim Pth As String, Fname As String
   
   Set Mws = ThisWorkbook.Sheets("Master")
   Pth = "G:\Team\Corporate\July\"
   Application.ScreenUpdating = False
   Mws.Rows("6:" & Rows.Count).Clear
   Fname = Dir(Pth & "*.xls*")
   Do While Fname <> ""
      With Workbooks.Open(Pth & Fname)
         With .Sheets("Data")
            .Range("A6:BE" & .Range("A" & Rows.Count).End(xlUp).Row).Copy Mws.Range("A" & Rows.Count).End(xlUp).Offset(1)
         End With
         .Close False
      End With
      Fname = Dir()
   Loop
   Pth = "C:\MrExcel\"
   Fname = Dir(Pth & "*.xls*")
   Do While Fname <> ""
      With Workbooks.Open(Pth & Fname)
         With .Sheets("Data")
            .Range("A6:BE" & .Range("A" & Rows.Count).End(xlUp).Row).Copy Mws.Range("A" & Rows.Count).End(xlUp).Offset(1)
         End With
         .Close False
      End With
      Fname = Dir()
   Loop
End Sub
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top