Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a main worksheet I have been working on which I am now ready to roll
out to multiple worksheets. Using this VB I already created the sheets with the tab names I needed as the tab names are customer numbers Sub CreateSheetsFromAList() Dim myCell As Range, MyRange As Range Set MyRange = Sheets("RawData").Range("RawData!L:L") Set MyRange = Range(MyRange, MyRange.End(xlDown)) For Each myCell In MyRange Sheets.Add After:=Sheets(Sheets.Count) 'creates a new worksheet Sheets(Sheets.Count).Name = myCell.Value ' renames the new worksheet Next myCell End Sub Now I am trying to figure out how to incorporate the ability to copy the contents of the main sheet into those worksheets with the VB that creates the tabs. Because the data will change I need to be able to update the workbook with new customers and add the template for the same look and feel. any suggestions . Thanks Any suggestions -- Nelson |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Copy same cell in multiple worksheets onto one worksheet | Excel Discussion (Misc queries) | |||
Populate central worksheet template from multiple worksheets | Excel Discussion (Misc queries) | |||
how to copy data from one worksheet to multiple worksheets at once | Excel Worksheet Functions | |||
Copy range from one worksheet and paste to multiple worksheets | Excel Discussion (Misc queries) | |||
Copy Range From Multiple Worksheets to a Single Worksheet | Excel Discussion (Misc queries) |