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
 
Top