K
Kev
Hi there
I am converting a large amount of pdf documents into Word format. The
program I am using will perform multiple conversions at once when
opening the PDFs into word (PDF Convertor 3)
Unfortunately it wont bulk save them.
At the end of opening all thedocuments, I am left with multiple
documents open in word. If I click on "SAVE AS" it opens a dialog box
with the suggested file name filled in. This name is created form the
source PDF.
I want to create a macro that will save the file using the suggested
name, then close it.
I have created one, but they all keep saving as the same file name
(Resume1.doc).
How do I code the variable please so that when I run the macro, the
file saves with it's suggested name?
--------------------------------------------------------------------------------------------------------
ActiveDocument.SaveAs FileName:="resume1.doc", FileFormat:= _
wdFormatDocument, LockComments:=False, Password:="",
AddToRecentFiles:= _
True, WritePassword:="", ReadOnlyRecommended:=False,
EmbedTrueTypeFonts:= _
False, SaveNativePictureFormat:=False, SaveFormsData:=False, _
SaveAsAOCELetter:=False
ActiveDocument.Close
---------------------------------------------------------------------------------------
I am converting a large amount of pdf documents into Word format. The
program I am using will perform multiple conversions at once when
opening the PDFs into word (PDF Convertor 3)
Unfortunately it wont bulk save them.
At the end of opening all thedocuments, I am left with multiple
documents open in word. If I click on "SAVE AS" it opens a dialog box
with the suggested file name filled in. This name is created form the
source PDF.
I want to create a macro that will save the file using the suggested
name, then close it.
I have created one, but they all keep saving as the same file name
(Resume1.doc).
How do I code the variable please so that when I run the macro, the
file saves with it's suggested name?
--------------------------------------------------------------------------------------------------------
ActiveDocument.SaveAs FileName:="resume1.doc", FileFormat:= _
wdFormatDocument, LockComments:=False, Password:="",
AddToRecentFiles:= _
True, WritePassword:="", ReadOnlyRecommended:=False,
EmbedTrueTypeFonts:= _
False, SaveNativePictureFormat:=False, SaveFormsData:=False, _
SaveAsAOCELetter:=False
ActiveDocument.Close
---------------------------------------------------------------------------------------