Hello Happy New Year Guessed.
I think I added too many xml mapping so in which I deleted them.
It works! Thank you so much
Now I want to save the file into other location before the userform pop out.
Which is the last step but I can't seem to find a way to make it pop out.
Code:
PHP Code:
Private Sub DocumentSaveAs()
Dim strFilePath, strFileName
strFilePath = "C:\Users\Public\Documents\"
strFileName = "put-filename-here.docx"
With Dialogs(wdDialogFileSaveAs)
.Name = strFilePath & strFileName
.Show
End With
End Sub