ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   How do i create upto 50 copies of a spreadsheet within one workboo (https://www.excelbanter.com/excel-worksheet-functions/212219-how-do-i-create-upto-50-copies-spreadsheet-within-one-workboo.html)

Paul

How do i create upto 50 copies of a spreadsheet within one workboo
 
i have a single spreadsheet which will have various cells such a text, data.
I want to create up to 50 copies as tabs client1, client2, client3, etc

any ideas
--
Thanks

Paul

Gary''s Student

How do i create upto 50 copies of a spreadsheet within one workboo
 
Make sure the original sheet is named "client". The run this simple macro:

Sub Macro1()
For i = 1 To 50
Sheets("client").Copy Befo=Sheets(1)
ActiveSheet.Name = "client" & i
Next
End Sub
--
Gary''s Student - gsnu200817


"Paul" wrote:

i have a single spreadsheet which will have various cells such a text, data.
I want to create up to 50 copies as tabs client1, client2, client3, etc

any ideas
--
Thanks

Paul


Rick Rothstein

How do i create upto 50 copies of a spreadsheet within one workboo
 
Here is a method that puts the new sheets at the end of any existing sheets. Simply activate the sheet you want to copy (that is an important step) and then run the CreateClientSheets macro...

Sub CreateClientSheets()
Dim X As Long
Dim WSindex As Long
WSindex = ActiveSheet.Index
Application.ScreenUpdating = False
For X = 1 To 5
Sheets(WSindex).Copy After:=Sheets(Sheets.Count)
ActiveSheet.Name = "Client" & X
Next
Sheets(WSindex).Activate
Application.ScreenUpdating = True
End Sub

--
Rick (MVP - Excel)


"Paul" wrote in message ...
i have a single spreadsheet which will have various cells such a text, data.
I want to create up to 50 copies as tabs client1, client2, client3, etc

any ideas
--
Thanks

Paul


Ashish Mathur[_2_]

How do i create upto 50 copies of a spreadsheet within one workboo
 
Hi,

To work with a non macro approach, go to Insert Worksheet. A new
worksheet will not get created. Now keep pressing F4 till you have 50
sheets.

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"Paul" wrote in message
...
i have a single spreadsheet which will have various cells such a text,
data.
I want to create up to 50 copies as tabs client1, client2, client3, etc

any ideas
--
Thanks

Paul



Gord Dibben

How do i create upto 50 copies of a spreadsheet within one workboo
 
Ashish

That only inserts new worksheets, does not copy the original.


Gord Dibben MS Excel MVP

On Wed, 3 Dec 2008 07:26:29 +0530, "Ashish Mathur"
wrote:

Hi,

To work with a non macro approach, go to Insert Worksheet. A new
worksheet will not get created. Now keep pressing F4 till you have 50
sheets.



Paul

How do i create upto 50 copies of a spreadsheet within one wor
 
perfect response it worked.


--
Thanks

Paul


"Gary''s Student" wrote:

Make sure the original sheet is named "client". The run this simple macro:

Sub Macro1()
For i = 1 To 50
Sheets("client").Copy Befo=Sheets(1)
ActiveSheet.Name = "client" & i
Next
End Sub
--
Gary''s Student - gsnu200817


"Paul" wrote:

i have a single spreadsheet which will have various cells such a text, data.
I want to create up to 50 copies as tabs client1, client2, client3, etc

any ideas
--
Thanks

Paul


Jeff

How do i create upto 50 copies of a spreadsheet within one workboo
 
Is there a way to name the tabs with dates?

In particular, July 1, 2009; July 8, 2009; July 15, 2009; etc.?

thanks!
--
Jeff


"Paul" wrote:

i have a single spreadsheet which will have various cells such a text, data.
I want to create up to 50 copies as tabs client1, client2, client3, etc

any ideas
--
Thanks

Paul



All times are GMT +1. The time now is 05:06 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com