Save doc with form data

CTQE

Registered User.
Local time
Today, 13:36
Joined
Feb 27, 2008
Messages
48
Hello Gentlemen,

I have a Word doc with some form fields.
I would like to save the form with a file name based on the data entered into the form fields.

Example:
Field 1: Job #
Field 2: date

File name to be saved as: Job# date.doc

Thanks in advance for your help.
 
Have you managed to reslove this, VBA would be the anwser and a button on the form would do that.

Code would be something like

ActiveDocument.SaveAs FieldName.Value and DateFieldName.Value

Change the fieldName to the name of the Fields you are using.
 

Users who are viewing this thread

Back
Top Bottom