How can I paste a sheet manytime over

manii

New Member
Joined
Mar 7, 2009
Messages
3
I would like to past a sheet over and over again with out having to do each page over and over again .. can sombody please help me

Manii:)
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
you can use a macro. say, for example, I have one sheet in my workbook, and I want to past 50 copies of it, one sheet after another in the workbook. I would use this macro in the WORKBOOK module:
Code:
dim i as long

for i = 1 to 50
  sheets(i).copy after:= sheets(i)
next i
YOU CAN ALSO DO THINGS LIKE RENAMING THE NEW SHEET WHEN IT'S CREATED AND SUCH. CHECK OUT THE HELP MENU FOR THIS KIND OF STUFF. JUST REMEMBER THAT THE SHEET COUNT STARTS AT 1 FOR THE BASE, NOT 0 (SOME OBJECTS IN VB START THE BASE AT 0 FOR THE ELEMENT COUNTS IN THE COLLECTIONS). ALSO REMEMBER THAT SHEET 1 STARTS AT THE LEFT SIDE OF THE BOOK AND GOES RIGHT INCREMENTALLY.
 
Last edited:
Upvote 0
Hi Manii,

It is a little vague as to exactly what you are asking.

These steps will copy a worksheet to as many new worksheets as you want:

1. Click the corner square left of the A and above the 1 and hit Ctrl-c to Copy the active worksheet to your clipboard.
2. Hit Shift-F11. (Creates new worksheet)
3. Hit Ctrl-v to paste.

Repeat Shift-F11 and Ctrl-v as desired.
 
Upvote 0
Thank you Adam.. that is what I wanted to do , only i was hoping for a method that did not need a macro..

And thanks to you john for your help .. only that method gets a bit tiring after 256 time ..

Thanks again

Manuel
 
Upvote 0
i don't think you can do it without a macro, but good luck!
 
Upvote 0
thanks for the help .. I am bit new to excel .. i guess I will have to learn How Excel macro works ..lol.

Tahnks again

Manuel
 
Upvote 0

Forum statistics

Threads
1,214,588
Messages
6,120,412
Members
448,959
Latest member
camelliaCase

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top