![]() |
|
#1
|
|||
|
|||
|
Hello, I am using the below macro (borrowed) on a document that I have, when I try and run the macro on my document (word 2016) it does nothing. Please help. Thanks, Dave Code:
Sub FilePrint()
Dim lStart As Long, lEnd As Long, i As Long
On Error GoTo ErrHandler
With ActiveDocument
lStart = CInt(InputBox("What is the first Report to print?", _
"Print Report From", .CustomDocumentProperties("Counter").Value + 1))
lEnd = CInt(InputBox("What is the last Report to print?", _
"Print Report To", lStart))
If lStart = 0 Or lStart > lEnd Then GoTo ErrHandler
For i = lStart To lEnd
.CustomDocumentProperties("Counter").Value = i
.Fields.Update
If i = lStart Then
With Application.Dialogs(wdDialogFilePrint)
If .Show = 0 Then GoTo ErrHandler
End With
End If
If i > lStart Then ActiveDocument.PrintOut
Next
End With
ErrHandler:
End Sub
Last edited by macropod; 01-23-2018 at 11:01 AM. Reason: Added code tags |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Why does Word indexing change section page numbering to "continuous"? | kaspencer | Word | 6 | 07-02-2015 02:24 PM |
begin each section with page 1 in header PLUS continuous page numbering in footer
|
onemorecupofcoffee | Word | 18 | 09-04-2013 04:31 PM |
Section Break Continuous: doesn't affect the format of the page numbering
|
Jamal NUMAN | Word | 2 | 06-22-2011 04:46 PM |
| Continuous page numbering in a merged document | dkeinath | Mail Merge | 0 | 07-30-2010 09:30 AM |