+ Reply to Thread
Results 1 to 3 of 3

merge excel files

Hybrid View

  1. #1
    Forum Expert
    Join Date
    11-23-2005
    Location
    Rome
    MS-Off Ver
    Ms Office 2016
    Posts
    1,628
    You can try to change your macro so:
    'COPY DATA FROM ALL SHEETS TO THE MASTER SHEET
    Private Sub Transfer_data_with_headings()
        Workbooks.Open Filename:=FromBook
        For Each FromSheet In Workbooks(FromBook).Worksheets
            If LCase(FromSheet.Name) Like "*form*" Then
                LastRow = FromSheet.Range("A65536").End(xlUp).Row
               
    ' copy/paste to master sheet
       
                FromSheet.Range(FromSheet.Cells(2, 1), _
                    FromSheet.Cells(LastRow, NumColumns)).Copy _
                    Destination:=ToSheet.Range("A" & ToRow)
       
    'set next ToRow
       
                ToRow = ToSheet.Range("A65536").End(xlUp).Row + 1
            End If
        Next
        Workbooks(FromBook).Close savechanges:=False
    End Sub
    Regards,
    Antonio

  2. #2
    Registered User
    Join Date
    03-12-2007
    Posts
    61
    Excellent!!!! This works great.

    Thank you so much, Mary-Lou

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1