Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
danzil
 
Posts: n/a
Default How do I duplicate a sheet 20 times in an excel spreadsheet

Hi. I am using windows 2000
I am trying to duplicate a sheet in my Excel spreadsheets 20 times without
having to copy one at a time. is there a way to do this?
In other words I want to repeat my first sheet 20 times so that I have 20
sheet of the same information.
Thanks
  #2   Report Post  
Frank Kabel
 
Posts: n/a
Default

Hi
record a macro while doing this manually and insert a loop to do this
multiple times). without macros not possible

--
Regards
Frank Kabel
Frankfurt, Germany
"danzil" schrieb im Newsbeitrag
...
Hi. I am using windows 2000
I am trying to duplicate a sheet in my Excel spreadsheets 20 times without
having to copy one at a time. is there a way to do this?
In other words I want to repeat my first sheet 20 times so that I have 20
sheet of the same information.
Thanks



  #3   Report Post  
Dave R.
 
Posts: n/a
Default

You can record a macro and then edit like the following;

Sub SheetCopy()

For i = 1 To 20
Sheets("Sheet1").Copy Befo=Sheets(1)
Next

End Sub




"danzil" wrote in message
...
Hi. I am using windows 2000
I am trying to duplicate a sheet in my Excel spreadsheets 20 times without
having to copy one at a time. is there a way to do this?
In other words I want to repeat my first sheet 20 times so that I have 20
sheet of the same information.
Thanks



  #4   Report Post  
Peo Sjoblom
 
Posts: n/a
Default

You would only have to do it a few times, first select the sheet, then create
a copy, then select both sheets and create copies of them, then select the 4
copies and make copies of them, next time you would have 16 copies and then
you just select 4 copies and make copies of them. Less than a minute

Regards,

Peo Sjoblom

"danzil" wrote:

Hi. I am using windows 2000
I am trying to duplicate a sheet in my Excel spreadsheets 20 times without
having to copy one at a time. is there a way to do this?
In other words I want to repeat my first sheet 20 times so that I have 20
sheet of the same information.
Thanks

  #5   Report Post  
Gord Dibben
 
Posts: n/a
Default

danzil

VBA macro OK with you?

Sub SheetCopy22()
Dim i As Long
Application.ScreenUpdating = False
howmany = InputBox("Copy Active Sheet How Many Times?")
For i = 1 To howmany
ActiveSheet.Copy After:=Sheets(1)
Next i
Application.ScreenUpdating = True
End Sub

Gord Dibben Excel MVP

On Fri, 17 Dec 2004 10:49:06 -0800, danzil
wrote:

Hi. I am using windows 2000
I am trying to duplicate a sheet in my Excel spreadsheets 20 times without
having to copy one at a time. is there a way to do this?
In other words I want to repeat my first sheet 20 times so that I have 20
sheet of the same information.
Thanks


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
Excel 2003 FAILS, but Excel 2000 SUCCEEDS ??? Richard Excel Discussion (Misc queries) 2 May 13th 23 11:46 AM
copying data from Excel spreadsheet to another DavidB Excel Discussion (Misc queries) 1 January 11th 05 12:26 AM
Hyperlink to specific sheet in Excel Web File jd17 Links and Linking in Excel 0 December 8th 04 10:03 PM
How do I password protect cells in a spreadsheet created in Excel Tbenson37303 Excel Worksheet Functions 0 November 22nd 04 10:21 PM
How do I password protect cells in a spreadsheet created in Excel [email protected] Excel Worksheet Functions 0 November 22nd 04 10:21 PM


All times are GMT +1. The time now is 04:28 PM.

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"