Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I would like to know if there is a way to create individual spreadsheets from
a master spreadsheet thru a macro.? For example, my master spreadsheet has 10 salesmen listed and I would like to have a spreadsheet for each salesman. Thanks. -- Bob |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
It is usually very simple. You have not provided enough details to supply
code. for example for ColCount = 3 to 10 worksheets.add after:=Sheets(Sheets.count) sheets("Master").column(ColCount).copy _ activesheet.columns("A:A") Activesheet.name = Sheets("Master").cells(1,ColCount) Next ColCount "Bob" wrote: I would like to know if there is a way to create individual spreadsheets from a master spreadsheet thru a macro.? For example, my master spreadsheet has 10 salesmen listed and I would like to have a spreadsheet for each salesman. Thanks. -- Bob |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Bob
See http://www.rondebruin.nl/copy6.htm -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm "Bob" wrote in message ... I would like to know if there is a way to create individual spreadsheets from a master spreadsheet thru a macro.? For example, my master spreadsheet has 10 salesmen listed and I would like to have a spreadsheet for each salesman. Thanks. -- Bob |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Creating a master spreadsheet | Excel Discussion (Misc queries) | |||
Break master list up into lists in separate worksheets | Excel Discussion (Misc queries) | |||
Combining spreadsheets to a master sheet | Excel Discussion (Misc queries) | |||
Load data from multiple spreadsheets into one master spreadsheet | Excel Programming | |||
Copying spreadsheets in directory into master spreadsheet | Excel Programming |