VBA to copy data from multiple workbooks into new master workbook

MSpicewood

New Member
Joined
May 15, 2018
Messages
13
Good morning,


I'm a VBA novice and having a hard time with my first major project. I've been researching solutions to copy all the data from multiple files (.XLS?) in a directory called "C:/allfiles/" to a newly created master report file.

I need a solution that won't capture any additional blank rows as each file has a different number of entries. I'm also trying to only pull from the first worksheet on each workbook file. These files have a second tab called LOG which I'm trying to exclude.

I have referenced a previous topic here to get started but it's not working out as my specifications are a bit different. Referenced: https://www.mrexcel.com/forum/excel...ata-multiple-workbooks-into-master-sheet.html

Any help is greatly appreciated. Thank you.
 
Do any of your files have a blank rows within the data?
 
Upvote 0

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Let me start by correcting myself: Header row 1 from file each shows as in Header row 1 (file 1), Header row 1 (file 2), Header row 1 (file 3) etc.
I can confirm other than the header most of these rows have a blank A column. To test the macro, I've added random numbers to the A column and ran it again. I can confirm that the output does include the missing rows when column A isn't blank.

So the way CurrentRegion is interacting with the loop is causing an issue?
 
Last edited:
Upvote 0
In that case change the highlighted A to a column that will always have a value
Code:
Wbk.Sheets(1).Range("[COLOR=#ff0000]A[/COLOR]1").CurrentRegion.Copy
 
Upvote 0
I've done as requested and it's still having difficulties. I've located a secondary issue caused by the offset number which seems to be the second piece of the puzzle.

Code:
Wbk.Sheets(1).Range("F1").CurrentRegion.Copy Mws.Range("A" & Rows.Count).End(xlUp).Offset([COLOR=#ff0000]1[/COLOR]) 'Original sort and copy

It seems to be cutting off the majority of the data in most files except the last file.
I've compensated by changing the value to ten. As a result I can see all of the data finally!

This offset change doesn't fix the version of the sort and copy that removes the headers. It also leaves a bunch of blank spaces BUT since I made that post-loop header cleaner it will do a rough version of removing headers. I can then create something that goes through the master work sheet and removes the entire row if A-F are blank, thus tidying the sheet further.

What do you think?
 
Last edited:
Upvote 0
Assuming col F will always have data for every row try
Code:
Mws.Range("[COLOR=#ff0000]F[/COLOR]" & Rows.Count).End(xlUp).Offset([COLOR=#ff0000]1,-5[/COLOR])
 
Upvote 0
Assuming col F will always have data for every row try
Code:
Mws.Range("[COLOR=#ff0000]F[/COLOR]" & Rows.Count).End(xlUp).Offset([COLOR=#ff0000]1,-5[/COLOR])

That works perfectly. I'll take the time to look through the code again until I understand it all from top to bottom so that my future tools can be written independently and time effectively moving forward. Thank you for everything.
 
Last edited:
Upvote 0
Glad to help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,329
Members
452,635
Latest member
laura12345

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