Copying all data from multiple files with 3 worksheets into a master

jdhfch

Board Regular
Joined
Jan 25, 2018
Messages
88
Office Version
  1. 365
Platform
  1. Windows
Hi,

Please can anyone help me with some VBA code.

I am wanting to consolidate all files into a folder into one master file. The files are all the same format and all have 3 worksheets named, Price, Cost & Volume. The data goes from column a - x. There are a lot of files, and there is a new file added every day.

I can find loads that work for one worksheet, but none for multiple worksheets across multiple files.
 
Something like this may be helpfull but there is inportant order of openning files.

VBA Code:
Workbooks(1).Sheets(1).Range("Your Range For example: A1:B9").Copy
Workbooks(2).Sheets(1).Range("Your Range For example: A1:B9").PasteSpecial xlPasteValues
Workbooks(1).Sheets(1).Range("Your Range For example: A1:B9").Copy
Workbooks(3).Sheets(1).Range("Your Range For example: A1:B9").PasteSpecial xlPasteValues
Workbooks(1).Sheets(1).Range("Your Range For example: A1:B9").Copy
Workbooks(4).Sheets(1).Range("Your Range For example: A1:B9").PasteSpecial xlPasteValues
 
Upvote 0
Hello @jdhfch.
Try next code:
VBA Code:
Option Explicit

Sub MergeFilesToMaster()
    Dim wbSource As Workbook, wsSource As Worksheet
    Dim DataRange As Range, Arr As Variant
    Dim LastRow As Long, PasteRow As Long
    Dim i           As Long

    Dim FolderPath  As String
    FolderPath = "D:\New Folder\"    ' Replace with your path

    Dim MasterFile  As Workbook
    Set MasterFile = ThisWorkbook

    Dim wsNames     As Variant
    wsNames = Array("Price", "Cost", "Volume")

    Dim FileName    As String
    FileName = Dir(FolderPath & "*.xls*")

    With Application
        .ScreenUpdating = False
        .Calculation = xlCalculationManual
        .DisplayAlerts = False

        Do While FileName <> ""
            Set wbSource = Workbooks.Open(FolderPath & FileName, ReadOnly:=True)

            For i = LBound(wsNames) To UBound(wsNames)
                On Error Resume Next
                Set wsSource = wbSource.Sheets(wsNames(i))
                On Error GoTo 0

                If Not wsSource Is Nothing Then
                    LastRow = wsSource.Cells(Rows.Count, "A").End(xlUp).Row

                    If LastRow >= 2 Then   ' It is assumed that the first row contains headings (if there is something to copy)
                        Set DataRange = wsSource.Range("A2:X" & LastRow)
                        Arr = DataRange.Value

                        With MasterFile.Sheets(wsNames(i))
                            PasteRow = .Cells(.Rows.Count, "A").End(xlUp).Row + 1
                            .Cells(PasteRow, 1).Resize(UBound(Arr, 1), UBound(Arr, 2)).Value = Arr
                        End With

                    End If

                End If

            Next i

            wbSource.Close False
            FileName = Dir
        Loop

        .DisplayAlerts = True
        .Calculation = xlCalculationAutomatic
        .ScreenUpdating = True
    End With

    MsgBox "Merging files into one Master File is complete.!", vbInformation
End Sub
Read the comments in the code and make the necessary changes according to the comments and everything will work correctly for you. I hope I was able to help you. Good luck.
 
Upvote 0
Solution
Hello @jdhfch.
Try next code:
VBA Code:
Option Explicit

Sub MergeFilesToMaster()
    Dim wbSource As Workbook, wsSource As Worksheet
    Dim DataRange As Range, Arr As Variant
    Dim LastRow As Long, PasteRow As Long
    Dim i           As Long

    Dim FolderPath  As String
    FolderPath = "D:\New Folder\"    ' Replace with your path

    Dim MasterFile  As Workbook
    Set MasterFile = ThisWorkbook

    Dim wsNames     As Variant
    wsNames = Array("Price", "Cost", "Volume")

    Dim FileName    As String
    FileName = Dir(FolderPath & "*.xls*")

    With Application
        .ScreenUpdating = False
        .Calculation = xlCalculationManual
        .DisplayAlerts = False

        Do While FileName <> ""
            Set wbSource = Workbooks.Open(FolderPath & FileName, ReadOnly:=True)

            For i = LBound(wsNames) To UBound(wsNames)
                On Error Resume Next
                Set wsSource = wbSource.Sheets(wsNames(i))
                On Error GoTo 0

                If Not wsSource Is Nothing Then
                    LastRow = wsSource.Cells(Rows.Count, "A").End(xlUp).Row

                    If LastRow >= 2 Then   ' It is assumed that the first row contains headings (if there is something to copy)
                        Set DataRange = wsSource.Range("A2:X" & LastRow)
                        Arr = DataRange.Value

                        With MasterFile.Sheets(wsNames(i))
                            PasteRow = .Cells(.Rows.Count, "A").End(xlUp).Row + 1
                            .Cells(PasteRow, 1).Resize(UBound(Arr, 1), UBound(Arr, 2)).Value = Arr
                        End With

                    End If

                End If

            Next i

            wbSource.Close False
            FileName = Dir
        Loop

        .DisplayAlerts = True
        .Calculation = xlCalculationAutomatic
        .ScreenUpdating = True
    End With

    MsgBox "Merging files into one Master File is complete.!", vbInformation
End Sub
Read the comments in the code and make the necessary changes according to the comments and everything will work correctly for you. I hope I was able to help you. Good luck.
Excellent, thank you
 
Upvote 0

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