Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
How do I make 30 copies of a portion of a file? I have a document with a
large table in it. I want to open another document and end up with 30 of the same table in the new document. Copy and paste does it one at a time. Is there a better way? |
#2
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
grom wrote:
How do I make 30 copies of a portion of a file? I have a document with a large table in it. I want to open another document and end up with 30 of the same table in the new document. Copy and paste does it one at a time. Is there a better way? Of course. After you've pasted two copies into the new document, select both, copy, and paste at the end. You now have four copies. Select all four, copy, and paste to make eight. After two more cycles of this you'll have 32 copies, and you can delete the last two. -- Regards, Jay Freedman Microsoft Word MVP FAQ: http://word.mvps.org Email cannot be acknowledged; please post all follow-ups to the newsgroup so all may benefit. |
#3
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
Another approach... once you copy, you *don't* have to copy again - just
click the Paste button (or Ctrl+V) 30 times. There isn't, however, a "Paste 30 times" command, and FWIW, my *guess* as to why is that having 30 copies of the same thing in a single document isn't a need that arises with any degreee of frequency . -- HTH |:) Bob Jones [MVP] Office:Mac "grom" wrote in message ... How do I make 30 copies of a portion of a file? I have a document with a large table in it. I want to open another document and end up with 30 of the same table in the new document. Copy and paste does it one at a time. Is there a better way? |
#4
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
You could use a macro which will copy the clipboard content to the document
as many times as you want Sub PasteThirty() On Error GoTo Oops: Dim sNumber sNumber = InputBox("How many copies?", "Copies", 30) For x = 1 To sNumber With Selection .Paste .TypeParagraph End With Next x Exit Sub Oops: Beep End Sub http://www.gmayor.com/installing_macro.htm -- Graham Mayor - Word MVP My web site www.gmayor.com Word MVP web site http://word.mvps.org grom wrote: How do I make 30 copies of a portion of a file? I have a document with a large table in it. I want to open another document and end up with 30 of the same table in the new document. Copy and paste does it one at a time. Is there a better way? |
Reply |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Why does Word close when I close a file? | Microsoft Word Help | |||
Copying and inserting File | New Users | |||
merge instructions from text file | Mailmerge | |||
How to create relative and shorthand file path names | Microsoft Word Help | |||
mail merg file list | Mailmerge |