View Single Post
 
Old 07-04-2014, 07:39 PM
macropod's Avatar
macropod macropod is offline Windows 7 32bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,381
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

You can make a macro run automatically whenever a document is created, via a Document_New macro in the template's 'ThisDocument' module. I'm not sure how invoking a SaveAs process at that time would fit in with your workflow, though.

Regarding "updating the Title property so it stays with the resultant pdf", you can do that by inserting:
.BuiltInDocumentProperties("Title") = StrNm
before the first:
End With

To make the default save format 'PDF', simply insert:
.Format = wdFormatPDF
before:
.Show
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote