Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
Irish
 
Posts: n/a
Default paste to several worksheets

how can I copy a single worksheet to several other worksheets in the same
workbook or another workbook? I cannot paste as the paste command is grey'd
out when I select 2 or more worksheets.
  #2   Report Post  
Posted to microsoft.public.excel.misc
Sheila D
 
Posts: n/a
Default paste to several worksheets

Right mouse click on the worksheet name and choose the Move or Copy command.
Check the box Create a Copy. You can copy to the current workbook or another
workbook
Sheila


"Irish" wrote:

how can I copy a single worksheet to several other worksheets in the same
workbook or another workbook? I cannot paste as the paste command is grey'd
out when I select 2 or more worksheets.

  #3   Report Post  
Posted to microsoft.public.excel.misc
Irish
 
Posts: n/a
Default paste to several worksheets

move and copy will only copy that worksheet and add it to the list of other
worksheets in the work book, I want to copy one work sheet and paste it to 65
other work sheets at the same time, I can only get it to work doing that one
at a time

"Sheila D" wrote:

Right mouse click on the worksheet name and choose the Move or Copy command.
Check the box Create a Copy. You can copy to the current workbook or another
workbook
Sheila


"Irish" wrote:

how can I copy a single worksheet to several other worksheets in the same
workbook or another workbook? I cannot paste as the paste command is grey'd
out when I select 2 or more worksheets.

  #4   Report Post  
Posted to microsoft.public.excel.misc
Sheila D
 
Posts: n/a
Default paste to several worksheets

Maybe you need to try the Programming group then - could be a way to do all
at once using VBA. Sorry can't help more
Sheila

"Irish" wrote:

move and copy will only copy that worksheet and add it to the list of other
worksheets in the work book, I want to copy one work sheet and paste it to 65
other work sheets at the same time, I can only get it to work doing that one
at a time

"Sheila D" wrote:

Right mouse click on the worksheet name and choose the Move or Copy command.
Check the box Create a Copy. You can copy to the current workbook or another
workbook
Sheila


"Irish" wrote:

how can I copy a single worksheet to several other worksheets in the same
workbook or another workbook? I cannot paste as the paste command is grey'd
out when I select 2 or more worksheets.

  #5   Report Post  
Posted to microsoft.public.excel.misc
Gord Dibben
 
Posts: n/a
Default paste to several worksheets

Irish

When you say copy one worksheet to 65 worksheets, what do you mean?

Do you want to copy just a range from sheet1 to all other sheets or copy the
entire sheet1 to all the other sheets?

I can provide a macro that will copy/replicate sheet1 65 times, but it doesn't
"copy to the other existing sheets".

Maybe look at Ron de Bruin's site for macros to copy from one sheet to others.

http://www.rondebruin.nl/copy1.htm


Gord Dibben MS Excel MVP


On Mon, 26 Jun 2006 09:58:02 -0700, Irish
wrote:

move and copy will only copy that worksheet and add it to the list of other
worksheets in the work book, I want to copy one work sheet and paste it to 65
other work sheets at the same time, I can only get it to work doing that one
at a time

"Sheila D" wrote:

Right mouse click on the worksheet name and choose the Move or Copy command.
Check the box Create a Copy. You can copy to the current workbook or another
workbook
Sheila


"Irish" wrote:

how can I copy a single worksheet to several other worksheets in the same
workbook or another workbook? I cannot paste as the paste command is grey'd
out when I select 2 or more worksheets.




  #6   Report Post  
Posted to microsoft.public.excel.misc
Irish
 
Posts: n/a
Default paste to several worksheets

I want to copy the entire sheet 1 to all 65 other sheets, which is possible
one at a time but I can't select all the other sheets and paste because
"paste" is grey'd out when you select two or more sheets.

"Gord Dibben" wrote:

Irish

When you say copy one worksheet to 65 worksheets, what do you mean?

Do you want to copy just a range from sheet1 to all other sheets or copy the
entire sheet1 to all the other sheets?

I can provide a macro that will copy/replicate sheet1 65 times, but it doesn't
"copy to the other existing sheets".

Maybe look at Ron de Bruin's site for macros to copy from one sheet to others.

http://www.rondebruin.nl/copy1.htm


Gord Dibben MS Excel MVP


On Mon, 26 Jun 2006 09:58:02 -0700, Irish
wrote:

move and copy will only copy that worksheet and add it to the list of other
worksheets in the work book, I want to copy one work sheet and paste it to 65
other work sheets at the same time, I can only get it to work doing that one
at a time

"Sheila D" wrote:

Right mouse click on the worksheet name and choose the Move or Copy command.
Check the box Create a Copy. You can copy to the current workbook or another
workbook
Sheila


"Irish" wrote:

how can I copy a single worksheet to several other worksheets in the same
workbook or another workbook? I cannot paste as the paste command is grey'd
out when I select 2 or more worksheets.



  #7   Report Post  
Posted to microsoft.public.excel.misc
Gord Dibben
 
Posts: n/a
Default paste to several worksheets

Why do you want to copy the entire sheet to 65 existing sheets.

The 65 sheets' data would all be overwritten and you would have 65 copies of
sheet1

If you want 65 copies of sheet1 use this 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

If not familiar with VBA and macros, see David McRitchie's site for more on
"getting started".

http://www.mvps.org/dmcritchie/excel/getstarted.htm

In the meantime..........

First...create a backup copy of your original workbook.

To create a General Module, hit ALT + F11 to open the Visual Basic Editor.

Hit CRTL + R to open Project Explorer.

Find your workbook/project by name and select it.

Right-click and InsertModule. Paste the code in there. Save the
workbook and hit ALT + Q to return to your workbook.

Run the macro by going to ToolMacroMacros.

You can also assign this macro to a button or a shortcut key combo


Gord Dibben MS Excel MVP

On Mon, 26 Jun 2006 12:46:01 -0700, Irish
wrote:

I want to copy the entire sheet 1 to all 65 other sheets, which is possible
one at a time but I can't select all the other sheets and paste because
"paste" is grey'd out when you select two or more sheets.

"Gord Dibben" wrote:

Irish

When you say copy one worksheet to 65 worksheets, what do you mean?

Do you want to copy just a range from sheet1 to all other sheets or copy the
entire sheet1 to all the other sheets?

I can provide a macro that will copy/replicate sheet1 65 times, but it doesn't
"copy to the other existing sheets".

Maybe look at Ron de Bruin's site for macros to copy from one sheet to others.

http://www.rondebruin.nl/copy1.htm


Gord Dibben MS Excel MVP


On Mon, 26 Jun 2006 09:58:02 -0700, Irish
wrote:

move and copy will only copy that worksheet and add it to the list of other
worksheets in the work book, I want to copy one work sheet and paste it to 65
other work sheets at the same time, I can only get it to work doing that one
at a time

"Sheila D" wrote:

Right mouse click on the worksheet name and choose the Move or Copy command.
Check the box Create a Copy. You can copy to the current workbook or another
workbook
Sheila


"Irish" wrote:

how can I copy a single worksheet to several other worksheets in the same
workbook or another workbook? I cannot paste as the paste command is grey'd
out when I select 2 or more worksheets.




Gord Dibben MS Excel MVP
  #8   Report Post  
Posted to microsoft.public.excel.misc
Irish
 
Posts: n/a
Default paste to several worksheets

I created a blank attendance tracker for my employees basically like a blank
form for 65 employees. I want each employee on a seperate worksheet in one
workbook. so basically I have one master copy I want 65 copies of for each
employee where I can edit there name, employee number, etc for each
individual.

"Gord Dibben" wrote:

Why do you want to copy the entire sheet to 65 existing sheets.

The 65 sheets' data would all be overwritten and you would have 65 copies of
sheet1

If you want 65 copies of sheet1 use this 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

If not familiar with VBA and macros, see David McRitchie's site for more on
"getting started".

http://www.mvps.org/dmcritchie/excel/getstarted.htm

In the meantime..........

First...create a backup copy of your original workbook.

To create a General Module, hit ALT + F11 to open the Visual Basic Editor.

Hit CRTL + R to open Project Explorer.

Find your workbook/project by name and select it.

Right-click and InsertModule. Paste the code in there. Save the
workbook and hit ALT + Q to return to your workbook.

Run the macro by going to ToolMacroMacros.

You can also assign this macro to a button or a shortcut key combo


Gord Dibben MS Excel MVP

On Mon, 26 Jun 2006 12:46:01 -0700, Irish
wrote:

I want to copy the entire sheet 1 to all 65 other sheets, which is possible
one at a time but I can't select all the other sheets and paste because
"paste" is grey'd out when you select two or more sheets.

"Gord Dibben" wrote:

Irish

When you say copy one worksheet to 65 worksheets, what do you mean?

Do you want to copy just a range from sheet1 to all other sheets or copy the
entire sheet1 to all the other sheets?

I can provide a macro that will copy/replicate sheet1 65 times, but it doesn't
"copy to the other existing sheets".

Maybe look at Ron de Bruin's site for macros to copy from one sheet to others.

http://www.rondebruin.nl/copy1.htm


Gord Dibben MS Excel MVP


On Mon, 26 Jun 2006 09:58:02 -0700, Irish
wrote:

move and copy will only copy that worksheet and add it to the list of other
worksheets in the work book, I want to copy one work sheet and paste it to 65
other work sheets at the same time, I can only get it to work doing that one
at a time

"Sheila D" wrote:

Right mouse click on the worksheet name and choose the Move or Copy command.
Check the box Create a Copy. You can copy to the current workbook or another
workbook
Sheila


"Irish" wrote:

how can I copy a single worksheet to several other worksheets in the same
workbook or another workbook? I cannot paste as the paste command is grey'd
out when I select 2 or more worksheets.



Gord Dibben MS Excel MVP

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
Adding same cells across multiple worksheets LACA Excel Worksheet Functions 2 January 19th 06 03:21 PM
paste special | values should work with merged cells PastingSpecial Excel Discussion (Misc queries) 1 June 20th 05 06:51 PM
Copy and Paste between 2 worksheets with VBA Dave Y Excel Worksheet Functions 2 June 15th 05 03:47 PM
Can you paste values on multiple worksheets at one time? JanetK Excel Worksheet Functions 1 June 12th 05 04:51 PM
I cannot paste from one workbook to another. Copy works, paste do. JimmyMc Excel Discussion (Misc queries) 1 June 10th 05 03:54 PM


All times are GMT +1. The time now is 07:50 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"