• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Open the "save as " dialog box at the end of a macro

Chris L

New Member
I want to open the "save as " dialog box at the end of a macro.

I have already created a new workbook from a named file and will need to save it as a different name and in a different place each time I run the macro. I am hoping I can open the dialog and at least point to a directory.
 
At end of your code, put this line:
Code:
Application.Dialogs(xlDialogSaveAs).Show
I know it's been 8 years since your reply. This has worked OK, it always opens the local drive\Documents folder.
How can I alter this to point to a server directory? (ptii-srv\customer\Final)
 
Back
Top