Save As Form Field

A

ADO

I want to create a micro that will save a document using
the text in a Form Field preceded with a word "Property
of " as a filename. I use:

ActiveDocument.SaveAs FileName:=ActiveDocument.FormFields
("Text1").Result

to get the text in formfiled, however have a dificulty
precidding the formfiled data with the test "Property
of ". Please help
 
J

JGM

HI ADO,

Have you tried:

ActiveDocument.SaveAs FileName:="Property of " & _
ActiveDocument.FormFields("Text1").Result

?

HTH
Cheers!
 
A

ADO

Just Did!!!

Thanks alot HTH!
-----Original Message-----
HI ADO,

Have you tried:

ActiveDocument.SaveAs FileName:="Property of " & _
ActiveDocument.FormFields("Text1").Result

?

HTH
Cheers!

--
_______________________________________
Jean-Guy Marcil
(e-mail address removed)

"ADO" <[email protected]> a écrit dans le message de [email protected]...


.
 

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