Duplicate a page in Word 2000 60 times

  • Thread starter Thread starter Steve
  • Start date Start date
S

Steve

I am trying to find out if there is a way to duplicate a page in Word
about 60 times, without copy and paste each time.

Is there a shortcut for this?

Thanks

Steve
 
I'm really not trying to be snooty with this post, but I'm just extremely curious. I can't figure out why you would want to do this. Perhaps if you post what you are trying to accomplish with this document we could suggest a better way? I work tech support for a company and my users call asking some really strange questions and what they really wanted to accomplish with the document was very simple really if they knew the tool better. Like maybe a merge document would work for what you want

Anyway, I hope I didn't offend you asking this question.
 
You need to copy only once. Seems to me that the time it takes to press
Ctrl-V 60 times is less than the time it takes to write a posting to this
forum.

But as a challenge, is 17 the fewest number of keystrokes to achieve
this? --

Ctrl-A Ctrl-C Ctrl-End Ctrl-V Ctrl-V Ctrl-V
Ctrl-A Ctrl-C Ctrl-End Ctrl-V Ctrl-V Ctrl-V
Ctrl-A Ctrl-C Ctrl-End Ctrl-V Ctrl-V

you actually get 64 pages ...
 
A little macro?

Sub CopyPageALot()
ActiveDocument.Bookmarks("\page").Range.Select
Selection.Copy
For x = 1 To 60
Selection.EndKey Unit:=wdStory
Selection.Paste
Next x
End Sub

will paste the current page at the end of the document 60 times.


--
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
Graham Mayor - Word MVP

Web site www.gmayor.com
Word MVP web site www.mvps.org/word
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top