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,
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,
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.
Alf![]()
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
Last edited by Alf; 08-06-2018 at 01:00 AM.
y path is C:\Users\Arpit\Desktop\New folder
Hi thankyou for reply
but it is not working
Did you define the sPath properly?
If you did't add the last "\" then the macro will not work.![]()
sPath = "C:\Users\Arpit\Desktop\New folder\"
Alf
it is working now thank you very much
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.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks