Save As

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

ActiveWorkbook.SaveAs Filename:= _
"U:\FolderOne\FolderTwo\Folder3\", _
FileFormat:=xlNormal, Password:="", WriteResPassword:="", _
ReadOnlyRecommended:=False, CreateBackup:=False

Hi,

How do I change the above so it opens the save as dialog box to Folder3, but
allows the user to change the location and use any name to save?

the above version doesn't work because there is no workbook name after
folder3...

thanks a lot....

SteveC
 
Give this a try...

Application.Dialogs(xlDialogSaveAs).Show "U:\FolderOne\FolderTwo\Folder3\"
 

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

Similar Threads


Back
Top