Macro to Save Filename

F

Franko

Creating a macro to modify a document, then save the document with the same
filename in a different directory. While creating the macro, i do a "File,
Save As" and select the location, but cannot get the open file name.
 
J

Jezebel

You can't create macros like this using the recorder. You need to write
something like --

ActiveDocument.SaveAs FileName:="C:\...."\ & ActiveDocument.Name
 
Top