Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
Amy Amy is offline
external usenet poster
 
Posts: 165
Default combine sheets from several workbooks into one

I have a folder full of workbooks that I need to take the first sheet out of
and combine them all into one workbook. I need each of the worksheets to keep
the names they have in the original worksheet. Does anyone have an existing
macro that will do this? Thanks!
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 149
Default combine sheets from several workbooks into one

Amy,

You can try something along the lines of what is below. I'm using a file
filter of *.csv, but you can change the file extension to be what you need it
to be. (Depending on how your data is setup, e.g. csv file or formatted data
with formulas, there maybe faster ways to accomplish this task).

Best,

Matthew Herbert

Sub CombineCSVFIles()
Dim varFiles As Variant
Dim lngCnt As Long
Dim Wkb As Workbook
Dim Wks As Worksheet

varFiles = Application.GetOpenFilename(FileFilter:=", *.csv",
MultiSelect:=True)

If TypeName(varFiles) = "Boolean" Then
MsgBox "No files selected."
Exit Sub
End If

Set Wkb = Workbooks.Add
For lngCnt = LBound(varFiles) To UBound(varFiles)
Set Wks = Workbooks.Open(varFiles(lngCnt)).Worksheets(1)
Wks.Copy Wkb.Worksheets(1)
Wks.Parent.Close False
Next lngCnt
End Sub
"Amy" wrote:

I have a folder full of workbooks that I need to take the first sheet out of
and combine them all into one workbook. I need each of the worksheets to keep
the names they have in the original worksheet. Does anyone have an existing
macro that will do this? Thanks!

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I merge/combine different workbooks with different sheets Steve Descharme Excel Worksheet Functions 2 April 2nd 07 08:54 PM
Merge / Add / Combine Sheets from different Workbooks Andï Excel Programming 1 August 29th 06 05:57 PM
HELP TO COMBINE MULTIPLE SHEETS IN MULTIPLE WORKBOOKS Eddy Stan Excel Programming 12 March 13th 06 12:46 PM
Can I combine 100+ sheets from different workbooks into one worksh bootstrapgroup Excel Discussion (Misc queries) 0 April 8th 05 09:17 PM
Combine Sheets From Different Workbooks Tim Fortune Excel Programming 4 January 17th 04 11:31 PM


All times are GMT +1. The time now is 09:11 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"