Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default Copying more that one Worksheet at a time.

How are you all,

i was wondering if it was possible to copy more than one sheet at a time - i
have a work book and i need to make multiple copies of one particular sheet,
when i right click on a work sheet tab there are the options there - one of
them is move or copy - when you copy it askes where to put it, when you do
that it only comes up with one extra sheet - is it all possible to paste a
few more at a time than just one?

Thanks heaps Patchie
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 341
Default Copying more that one Worksheet at a time.

I can't see how to do that without some programming.
What you can do is 'double up' though. This way you can create lots of
sheets fairly fast.
So,
(A) select a sheet, drag it sideways (left button), hold control (+ icon
shows), drop
(now you have 2 sheets)
(B) select the first sheet, hold down control and select the new sheet.
Release. Now you have 2 sheets selected (two white ones). Click on one of
them, drag it sideways, hold control (now you see +++ icon), release. (now
you have four sheets).
(C) now you need to do the same to double up those 4 sheets to 8 sheets.

You should be able to get to the number of sheets you need pretty quickly
like this.
--
Allllen


"Patch" wrote:

How are you all,

i was wondering if it was possible to copy more than one sheet at a time - i
have a work book and i need to make multiple copies of one particular sheet,
when i right click on a work sheet tab there are the options there - one of
them is move or copy - when you copy it askes where to put it, when you do
that it only comes up with one extra sheet - is it all possible to paste a
few more at a time than just one?

Thanks heaps Patchie

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Copying more that one Worksheet at a time.

Patch

You cannot copy multiples of the same sheet at once unless you have multiple
copies of the sheet.

In that case you could select all copies of Sheet1 and use the "move or copy"
feature.

You have one other response describing how to double up to create multiples of a
sheet.

OR you could use a macro.............

Sub SheetCopy()
Dim i As Long
On Error GoTo endit
Application.ScreenUpdating = False
shts = InputBox("How many times")
For i = 1 To shts
ActiveSheet.Copy after:=ActiveSheet
Next i
Application.ScreenUpdating = True
endit:
End Sub


Gord Dibben MS Excel MVP

On Fri, 29 Sep 2006 01:15:51 -0700, Patch
wrote:

How are you all,

i was wondering if it was possible to copy more than one sheet at a time - i
have a work book and i need to make multiple copies of one particular sheet,
when i right click on a work sheet tab there are the options there - one of
them is move or copy - when you copy it askes where to put it, when you do
that it only comes up with one extra sheet - is it all possible to paste a
few more at a time than just one?

Thanks heaps Patchie


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
Copying a linked worksheet SelimTheDream Excel Worksheet Functions 4 July 19th 06 06:42 PM
How do I get ONLY new info from 1 Worksheet to another automatical Elaine Excel Worksheet Functions 6 July 13th 06 05:45 PM
Sorting and copying data to another worksheet in a workbook. Geo Excel Discussion (Misc queries) 3 June 5th 06 09:58 PM
Question when Copying an Existing Worksheet LL Excel Worksheet Functions 0 June 13th 05 03:17 PM
Copying Numerical Totals of separate worksheets to a single Summary Worksheet buster1831 Excel Discussion (Misc queries) 2 February 16th 05 11:28 PM


All times are GMT +1. The time now is 11:43 AM.

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"