SaveAs

D

Davis1309

I need to create a macro to just open the File SaveAs, the end user can save
the file as any name or in any directory they choose. Thanks!
 
J

Javed

I need to create a macro to just open the File SaveAs, the end user can save
the file as any name or in any directory they choose.  Thanks!

Sub FileSave()

With Application.FileDialog(msoFileDialogSaveAs)
If .Show Then .Execute
End With

End Sub

Pls let me know if anything more you need.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top