Posted to microsoft.public.word.docmanagement
|
|
2000 pages
See 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
prat61 wrote:
I created the page of w's and now I am confused on how to run the
macro. Do I go into the Microsoft Script Editor? If so where do I
place the code?
I am so confused.
Thank you for helping
"Doug Robbins - Word MVP" wrote:
I misread the question. Create one page full of w and then run the
following macro:
Dim i As Long
Dim w As String
With ActiveDocument
w = .Range.Text
For i = 1 To 2000
.Range.InsertAfter w
Next i
End With
--
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
"prat61" wrote in message
...
Is there a way to set word to fill a page 2000 times with the same
text. (i.e) "w"
I am trying to find what the file size would be
|