Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 04-11-2017, 06:38 AM
SSCMapletart SSCMapletart is offline Printing multiple copies of docm from Word to PDF saving file with sequential name- 001, 002 etc. Windows 7 64bit Printing multiple copies of docm from Word to PDF saving file with sequential name- 001, 002 etc. Office 2010 64bit
Novice
Printing multiple copies of docm from Word to PDF saving file with sequential name- 001, 002 etc.
 
Join Date: Apr 2017
Posts: 2
SSCMapletart is on a distinguished road
Default Printing multiple copies of docm from Word to PDF saving file with sequential name- 001, 002 etc.

I am wanting to reduce steps...


Is there a way I can print multiple copies of a document from Word 2010 to Adobe PDF with the print automatically programmed to save file with a sequential number after the name - (e.g. DocName-001, -002, -003 etc.) Let's say... set to print 50 copies and I can walk away from my PC for an hour!
I would like the same number represented in a field on the front page of the document.
Thank you
Reply With Quote
  #2  
Old 04-11-2017, 10:34 AM
Charles Kenyon Charles Kenyon is offline Printing multiple copies of docm from Word to PDF saving file with sequential name- 001, 002 etc. Windows 10 Printing multiple copies of docm from Word to PDF saving file with sequential name- 001, 002 etc. Office 2013
Moderator
 
Join Date: Mar 2012
Location: Sun Prairie, Wisconsin
Posts: 9,154
Charles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant future
Default

Why are you wanting to save the files?

The following may help:
Automatic numbering of Word documents by Graham Mayor
Reply With Quote
  #3  
Old 04-11-2017, 06:30 PM
macropod's Avatar
macropod macropod is offline Printing multiple copies of docm from Word to PDF saving file with sequential name- 001, 002 etc. Windows 7 64bit Printing multiple copies of docm from Word to PDF saving file with sequential name- 001, 002 etc. Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 21,963
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

Quote:
Originally Posted by SSCMapletart View Post
I am wanting to reduce steps...
Is there a way I can print multiple copies of a document from Word 2010 to Adobe PDF with the print automatically programmed to save file with a sequential number after the name - (e.g. DocName-001, -002, -003 etc.)
Why do you want to 'print' the documents to PDF rather than simply using Word's built-in SaveAs PDF option?

If all you need do is print the documents on paper with sequential numbering, there is no need to save them. See, for example:
https://www.msofficeforums.com/word-...numbering.html
https://www.msofficeforums.com/word-...html#post34477

If you really do need to generate PDFs, you could use the document setup described in the first link above, but with the following macro:
Code:
Sub MultiFileSave()
Dim lStart As Long, lEnd As Long, i As Long
On Error GoTo ErrHandler
With ActiveDocument
  lStart = CInt(InputBox("What is the first # to create?", _
    "Numbered Document Copier", .CustomDocumentProperties("Counter").Value + 1))
  lEnd = CInt(InputBox("What is the last # to create?", _
    "Numbered Document Copier", lStart))
  If lStart = 0 Or lStart > lEnd Then GoTo ErrHandler
  For i = lStart To lEnd
    .CustomDocumentProperties("Counter").Value = i
    .Fields.Update
    .SaveAs2 Split(.FullName, ".doc")(0) & "-" & Format(i, "000") & ".pdf", _
      Fileformat:=wdFormatPDF, AddToRecentFiles:=False
  Next
End With
ErrHandler:
End Sub
The output will be saved in the same folder and with the same name as the document you're using, except they'll be PDFs numbered as per your specification.
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote
  #4  
Old 04-18-2017, 03:04 AM
SSCMapletart SSCMapletart is offline Printing multiple copies of docm from Word to PDF saving file with sequential name- 001, 002 etc. Windows 7 64bit Printing multiple copies of docm from Word to PDF saving file with sequential name- 001, 002 etc. Office 2010 64bit
Novice
Printing multiple copies of docm from Word to PDF saving file with sequential name- 001, 002 etc.
 
Join Date: Apr 2017
Posts: 2
SSCMapletart is on a distinguished road
Default

Thank you both
I work in an (ethical) investment bank - everything is saved, recorded and filed away!
I'll give the macro a try
Regards, SSC
Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
I'm not sure if this is possible; regarding forms and file saving/printing. Stench Word 1 05-09-2015 01:41 AM
Printing multiple copies of docm from Word to PDF saving file with sequential name- 001, 002 etc. DOCM file not saving on Microsoft Word 2010 flutterby1 Word 4 10-08-2014 10:55 AM
Excel saving copies instead of changes SJM512 Excel 1 08-06-2013 11:35 AM
Printing multiple copies of docm from Word to PDF saving file with sequential name- 001, 002 etc. A newbie question: a must to save macro word file as .docm? tinfanide Word VBA 6 12-06-2011 03:02 PM
Printing multiple copies of docm from Word to PDF saving file with sequential name- 001, 002 etc. Sequential Page Numbering of Multiple Word Docs bobmard Word 8 08-24-2011 08:51 AM

Other Forums: Access Forums

All times are GMT -7. The time now is 10:27 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft