+ Reply to Thread
Results 1 to 7 of 7

How to combine multiple excel file in one worksheet

Hybrid View

  1. #1
    Registered User
    Join Date
    05-04-2018
    Location
    india
    MS-Off Ver
    2013
    Posts
    15

    How to combine multiple excel file in one worksheet

    Hi Team,

    I have more than 5 excel workbook with same Row and it need to combine in one excel sheet,
    Could you please help us how it will be combine in one excel sheet,
    Attached Files Attached Files

  2. #2
    Forum Expert Alf's Avatar
    Join Date
    03-13-2004
    Location
    Gothenburg/Mullsjoe, Sweden
    MS-Off Ver
    Excel 2019 and not sure I like it
    Posts
    4,784

    Re: How to combine multiple excel file in one worksheet

    Perhaps a code like this could be of help?

    The first thing you need to change is the sPath, for testing purposes I extracted your zip file to the folder "a_test on the C drive so that's why I use the sPath = "C:\a_test\" and you must change it to the proper path where your files are stored.

    The sPath will import all files in the sPath folder if they have the ".xlsx" extension. From the first file the macro finds it will copy the headings but skip it of the rest of the files.

    As I've used "ThisWorkbook" the name of the workbook that contains this code does not mater as "ThisWorbook" will be taken as the workbook that contains this code. So one need not specify the name of the macro containing workbook.

    Option Explicit
    
    Sub ProcessAllFiles()
    
        Dim sPath As String
        Dim Wb As Workbook
        Dim sFile As String
        Dim i As Integer
        
        i = 1
        
        sPath = "C:\a_test\"
         
        sFile = Dir(sPath & "*.xlsx")
        
        Application.ScreenUpdating = False
    
        Do While sFile <> ""
             
            Set Wb = Workbooks.Open(sPath & sFile)
        If i = 1 Then
            ActiveSheet.UsedRange.Copy
            ThisWorkbook.Activate
            Range("A1").PasteSpecial xlPasteAll
            Wb.Close SaveChanges:=False
            i = i + 1
        Else
            ActiveSheet.UsedRange.Offset(1).Copy
            ThisWorkbook.Activate
            Range("A" & Rows.Count).End(xlUp).Offset(1).PasteSpecial xlPasteAll
            Wb.Close SaveChanges:=False
            i = i + 1
        End If
        
        Application.CutCopyMode = False
             
            sFile = Dir
            
        Loop
            
        ActiveSheet.Columns.AutoFit
       
       Application.ScreenUpdating = True
        
    End Sub
    Alf
    Last edited by Alf; 08-06-2018 at 01:00 AM.

  3. #3
    Registered User
    Join Date
    05-04-2018
    Location
    india
    MS-Off Ver
    2013
    Posts
    15

    Re: How to combine multiple excel file in one worksheet

    y path is C:\Users\Arpit\Desktop\New folder

  4. #4
    Registered User
    Join Date
    05-04-2018
    Location
    india
    MS-Off Ver
    2013
    Posts
    15

    Re: How to combine multiple excel file in one worksheet

    Hi thankyou for reply

    but it is not working

  5. #5
    Forum Expert Alf's Avatar
    Join Date
    03-13-2004
    Location
    Gothenburg/Mullsjoe, Sweden
    MS-Off Ver
    Excel 2019 and not sure I like it
    Posts
    4,784

    Re: How to combine multiple excel file in one worksheet

    Did you define the sPath properly?

    sPath = "C:\Users\Arpit\Desktop\New folder\"
    If you did't add the last "\" then the macro will not work.

    Alf

  6. #6
    Registered User
    Join Date
    05-04-2018
    Location
    india
    MS-Off Ver
    2013
    Posts
    15

    Re: How to combine multiple excel file in one worksheet

    it is working now thank you very much

  7. #7
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2504 (Windows 11 Home 24H2 64-bit)
    Posts
    90,586

    Re: How to combine multiple excel file in one worksheet

    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED. Thanks.
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help. It's a universal courtesy.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    NB:
    as a Moderator, I never accept friendship requests.
    Forum Rules (updated August 2023): please read them here.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Vba macro to combine all worksheet in to one tab delimited file.
    By datajan in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 05-16-2018, 10:35 PM
  2. Replies: 8
    Last Post: 03-14-2017, 03:49 PM
  3. Replies: 4
    Last Post: 10-04-2015, 08:21 AM
  4. [SOLVED] Combine multiple (100+) excel files w/ one worksheet each into one giant worksheet
    By justin11 in forum Excel Programming / VBA / Macros
    Replies: 15
    Last Post: 08-03-2013, 01:05 PM
  5. macro to select and open multiple excel file and combine after that
    By dare2join in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 03-21-2013, 01:08 PM
  6. Replies: 1
    Last Post: 12-30-2005, 05:35 PM
  7. Replies: 0
    Last Post: 12-29-2005, 01:10 PM

Tags for this Thread

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