I have a word template that prompts the user for some text when opens a new document. I'm using the Fill-In field to do that and works fine. My question is: How can I reference the Fill-In field to assign the user text to Title of the document ?
I'm using this code, but it's not working:
With Dialogs(wdDialogFileSummaryInfo)
.Title = Fillin
.Execute
End With
Main goal here is: whatever the user writes on the prompt field when the document opens first time, will be the default filename of the word document when saving.
There is a better way to achieve this ? Thanks.