View Single Post
 
Old 12-05-2017, 01:19 PM
macropod's Avatar
macropod macropod is online now Windows 7 64bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,341
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

Since you want to be able to change the save folder, you could use something as simple as:
Code:
Sub Demo()
Dim StrNm As String
StrNm = Split(ActiveDocument.Tables(1).Cell(1, 1).Range.Text, vbCr)(0)
With Application.Dialogs(wdDialogFileSaveAs)
  .Name = StrNm
  .Format = wdFormatPDF
  .Show
End With
End Sub
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote