Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default copy past two existing sheets into 30 workbooks

I want to copy paste two existing sheets into 30 workbooks in a
folder.
The sheets are in a workbook called Master, and I need to make a copy/
move and insert into each workbook within the folder.

What is the simplest way to do this via VBA?

Thanks,
Robb
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,565
Default copy past two existing sheets into 30 workbooks

You will need something like this:

Sub dk()
For Each wb In myFolder.Workbooks
For i = 1 To 2
Workbooks("Master").Sheets(i).Copy +
After:=wb.Sheets(wb.Sheets.Count)
Next
Next
End Sub

This is totally untested and is only to give guidance as to structure for
creating a workable loop to go through the folder of files and copy
worksheets to them. Some things that have to happen are, each workbook in
the folder will have to be opened and then closed after the copy event. The
myFolder variable will need to include path.




"raffrobb" wrote in message
...
I want to copy paste two existing sheets into 30 workbooks in a
folder.
The sheets are in a workbook called Master, and I need to make a copy/
move and insert into each workbook within the folder.

What is the simplest way to do this via VBA?

Thanks,
Robb



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,565
Default copy past two existing sheets into 30 workbooks

I need to proof read these before entering. Change the + To _

You will need something like this:

Sub dk()
For Each wb In myFolder.Workbooks
For i = 1 To 2
Workbooks("Master").Sheets(i).Copy _
After:=wb.Sheets(wb.Sheets.Count)
Next
Next
End Sub

This is totally untested and is only to give guidance as to structure for
creating a workable loop to go through the folder of files and copy
worksheets to them. Some things that have to happen are, each workbook in
the folder will have to be opened and then closed after the copy event. The
myFolder variable will need to include path.





"JLGWhiz" wrote in message
...
You will need something like this:

Sub dk()
For Each wb In myFolder.Workbooks
For i = 1 To 2
Workbooks("Master").Sheets(i).Copy +
After:=wb.Sheets(wb.Sheets.Count)
Next
Next
End Sub

This is totally untested and is only to give guidance as to structure for
creating a workable loop to go through the folder of files and copy
worksheets to them. Some things that have to happen are, each workbook in
the folder will have to be opened and then closed after the copy event.
The myFolder variable will need to include path.




"raffrobb" wrote in message
...
I want to copy paste two existing sheets into 30 workbooks in a
folder.
The sheets are in a workbook called Master, and I need to make a copy/
move and insert into each workbook within the folder.

What is the simplest way to do this via VBA?

Thanks,
Robb





  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 140
Default copy past two existing sheets into 30 workbooks

Hi Rob

This will open all the excel in a designated folder. You will need to
change the file path to suit and also the names of the sheets to
copy. This macro assumes you are running it from the Master
spreadsheet. Hope this helps.

Take care

Marcus


Sub CopytoXLFiles()
Dim lCount As Long
Dim wbResults As Workbook
Dim wbThis As Workbook
Dim dblValue As Double
Dim WbCnt As Long
Dim Wrkbook As String

With Application
On Error Resume Next
Set wbThis = ThisWorkbook
dblValue = 0
WbCnt = 0
With .FileSearch
.NewSearch
.LookIn = "C:\Documents and Settings\MS2642\MyXLFiles
\Personal\FoldertoOpen\" '<-Change path to suit
.FileType = msoFileTypeExcelWorkbooks
If .Execute 0 Then 'Workbooks in folder
For lCount = 1 To .FoundFiles.Count 'Loop through
all.
'Open Workbook x and Set a Workbook variable to it
Set wbResults = Workbooks.Open
(Filename:=.FoundFiles(lCount), UpdateLinks:=0)
Wrkbook = ActiveWorkbook.Name
wbThis.Activate
Sheets(Array("Test1", "Test2")).Copy
Befo=Workbooks(Wrkbook).Sheets(1)
wbResults.Activate
WbCnt = WbCnt + 1
Next lCount
End If
End With
End With
End Sub
  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default copy past two existing sheets into 30 workbooks

See also
http://www.rondebruin.nl/copy4.htm

See the last example



--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm




"raffrobb" wrote in message ...
I want to copy paste two existing sheets into 30 workbooks in a
folder.
The sheets are in a workbook called Master, and I need to make a copy/
move and insert into each workbook within the folder.

What is the simplest way to do this via VBA?

Thanks,
Robb

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
Cannot copy & past beween workbooks LL Excel Discussion (Misc queries) 1 March 11th 10 05:36 AM
Formatting worksheets, existing and new, in existing workbooks G. Dagger[_2_] Excel Discussion (Misc queries) 4 January 7th 08 06:48 PM
Copy and past to different sheets zgclub Excel Discussion (Misc queries) 4 February 9th 06 11:58 AM
inserting sheets into existing workbooks w/o external references spence Excel Worksheet Functions 3 December 19th 05 04:33 PM
Copy & Past from multiple sheets to one Prometheus[_12_] Excel Programming 18 December 5th 05 12:36 AM


All times are GMT +1. The time now is 11:16 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"