How can I combine many excel sheets into one workbook

  • Thread starter Thread starter Elliott Alterman
  • Start date Start date
E

Elliott Alterman

I have lots of individual files with delimited data that I want to
incorporate into one Excel workbook with tabbed sheets. What's the easiest
way? What's the best way? Or do I have to convert each, then copy and paste?

TIA
 
Delimited, like a bunch of .CSV files?

If yes, then if they're all in the same folder, you could use a macro:

Option Explicit
Sub testme()

Dim newWks As Worksheet
Dim myFileNames As Variant
Dim nextWks As Worksheet
Dim wks As Worksheet
Dim fCtr As Long
Dim AllWkbk As Workbook

myFileNames = Application.GetOpenFilename _
(FileFilter:="CSV Files, *.CSV", _
MultiSelect:=True)

If IsArray(myFileNames) Then
Application.ScreenUpdating = False

Set AllWkbk = Workbooks.Add(1)
ActiveSheet.Name = "DeleteMeLater"

For fCtr = LBound(myFileNames) To UBound(myFileNames)
Set nextWks = Nothing
'On Error Resume Next
Set nextWks _
= Workbooks.Open(Filename:=myFileNames(fCtr)).Worksheets(1)
On Error GoTo 0
If nextWks Is Nothing Then
MsgBox "Error with: " & myFileNames(fCtr)
Else
nextWks.Move _
after:=AllWkbk.Worksheets(AllWkbk.Worksheets.Count)
End If
Next fCtr
If AllWkbk.Worksheets.Count > 1 Then
Application.DisplayAlerts = False
AllWkbk.Worksheets("deletemelater").Delete
Application.DisplayAlerts = True
Else
AllWkbk.Close savechanges:=False
MsgBox "No files were merged!"
End If
Else
MsgBox "try again later!"
End If

Application.ScreenUpdating = True

End Sub


When you're selecting the files to open, click on the first and ctrl-click on
subsequent files.

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm
 
Back
Top