Need Macro to Save File Copy and Rename it to Test Form Field Data

J

Johnny

I would like to create a Macro to save a copy of my document to a specified
location on my hard drive with a document name that includes the date and
data that is entered in two of the text form fields, if possible.
 
J

Jezebel

With ActiveDocument
.SaveAs FileName:="C:\[path]\" & .FormFields(1).Result &
..FormFields(2).Result
End With
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top