PC Review


Reply
Thread Tools Rate Thread

Copy a sheet more than one time

 
 
marko
Guest
Posts: n/a
 
      10th Dec 2005
Hi again!
Is there a way to make more than one copy of a sheet? Lets say that i
would like to copy my sheet 12 times, how can i do that?
Thanks again.

Marko

 
Reply With Quote
 
 
 
 
Ken Johnson
Guest
Posts: n/a
 
      10th Dec 2005
Hi marko,
1.copy gives 2 sheets.
2.Select original and copy (click original's tab>press shift while you
click copied sheet's tab)
3.copy again gives 4 sheets.
4. Select original and the three copies as before
5.copy again gives 8 sheets
etc etc for 16,32, 64....

Ken Johnson

 
Reply With Quote
 
Gord Dibben
Guest
Posts: n/a
 
      10th Dec 2005
Marko

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


Gord Dibben Excel MVP

On 10 Dec 2005 14:07:14 -0800, "marko" <(E-Mail Removed)> wrote:

>Hi again!
>Is there a way to make more than one copy of a sheet? Lets say that i
>would like to copy my sheet 12 times, how can i do that?
>Thanks again.
>
>Marko

 
Reply With Quote
 
marko
Guest
Posts: n/a
 
      11th Dec 2005
Thanks! Great code! It works brilliant!

Marko

 
Reply With Quote
 
marko
Guest
Posts: n/a
 
      11th Dec 2005
Thanks!

Marko

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Copy Row to Sheet If Column Value is between time frame Bruce S Microsoft Excel Programming 8 26th Feb 2009 01:10 PM
Macro to Copy certain values from different sheets to TIME Sheet prkhan56@gmail.com Microsoft Excel Programming 4 8th Jul 2007 02:15 PM
Copy a sheet more than one time marko Microsoft Excel Misc 4 11th Dec 2005 12:05 PM
How do I move or copy more then one sheet at a time =?Utf-8?B?Q2FybA==?= Microsoft Excel Worksheet Functions 2 2nd Jun 2005 11:42 PM
using excel macro how to copy sheet multiple time i.e. 100 =?Utf-8?B?cm1jYXJ0ZXI=?= Microsoft Excel Crashes 1 23rd Feb 2005 12:03 AM


Features
 

Advertising
 

Newsgroups
 


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