Creating separate spreadsheets from a master spreadsheet

B

Bob

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.
 
J

Joel

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top