Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 123
Default Copy worsheet from different files in to one file

Hi,

The situation is, I have 25 excel files in my C:/ drive.

I need to copy first worksheet named as "Fullrecon" from all 25 excel files
into one excel file.

In the new file, the data from the 25 excel sheets should come in one single
worksheet.

In other words if each of 25 excel sheets contain 100 rows then the final
excel sheets should contain 2500 rows.

This task is very important for me. I am not so good at coding. Please help
me achieve this. Thanks a lot for the help.

Thanks
Boss

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9,101
Default Copy worsheet from different files in to one file

Sub combine()

Folder = "c:\temp"
First = True
Do
If First = True Then
FName = Dir(Folder & "\*.xls")
First = False
Else
FName = Dir()
End If
If FName < "" Then
Workbooks.Open Filename:=Folder & "\" & FName
Set newbk = ActiveWorkbook

With ThisWorkbook.ActiveSheet
LastRow = .Range("A" & Rows.Count).End(xlUp).Row
NewRow = LastRow + 1
End With

With newbk.Sheets("Fullrecon")
NewLastRow = .Range("A" & Rows.Count).End(xlUp).Row
.Rows("1:" & NewLastRow).Copy _
Destination:=ThisWorkbook.ActiveSheet.Rows(NewRow)
End With
newbk.Close
End If
Loop While FName < ""
End Sub


"Boss" wrote:

Hi,

The situation is, I have 25 excel files in my C:/ drive.

I need to copy first worksheet named as "Fullrecon" from all 25 excel files
into one excel file.

In the new file, the data from the 25 excel sheets should come in one single
worksheet.

In other words if each of 25 excel sheets contain 100 rows then the final
excel sheets should contain 2500 rows.

This task is very important for me. I am not so good at coding. Please help
me achieve this. Thanks a lot for the help.

Thanks
Boss

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
Copy worsheet from different files in to one file Boss Excel Programming 3 February 11th 08 01:06 PM
Enter data in one worksheet and have it copy to another worsheet JimG Excel Discussion (Misc queries) 0 September 13th 07 01:50 AM
Divide worsheet and save as separate files Colin Hayes Excel Worksheet Functions 0 June 28th 05 09:42 PM
Trouble saving a worsheet to a file using macros. phoenixx153 Excel Programming 3 January 22nd 05 09:05 PM
Copy a range from different worksheets and place in another worsheet unplugs[_43_] Excel Programming 0 July 5th 04 03:51 AM


All times are GMT +1. The time now is 11:42 AM.

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

About Us

"It's about Microsoft Excel"