How to change the default "SaveAs" dialog directory path without prompting user nor causing a "save"

Ludwig

Board Regular
Joined
Apr 7, 2003
Messages
80
Office Version
  1. 365
Platform
  1. Windows
I know I can change the SaveAs path using

application.GetSaveAsFilename initialfilename:="%userprofile%\Downloads"

but this results in the user being presented with the SaveAs dialog.

I want to change the SaveaS directory they are shown if/when they issue their own SaveAs (or Save) request.

Reason why:
This will only occur when the macros in the spreadsheet make the file ReadOnly (e.g. user has been inactive for a period of time - got that code working).
To then prevent the user from accidentally overwriting the *real* file or creating duplicates in that same network folder, I want to change the SaveAs location away from the current file's location path to one within their own profile but not actually issue any save command. It's unlikely they will want to save, and should be so, but I like to be as safe as I can and avoid an overwritten file, or a clutter of files where they shouldn't be.

Thanks for your help.
 
Last edited:

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
you can use ChDir to change the current directory

hope this works
Code:
ChDir "C:\Users\" & Environ("username") & "\Downloads"
 
Upvote 0
Thanks for the suggestion.

I have just tested it .. unfortunately although the command did not fail, it had no effect on the selected SaveAs folder shown in SaveAs.
 
Upvote 0
Try
Code:
ChDrive "C:\"
ChDir "C:\Users\" & Environ("username") & "\Downloads"
 
Upvote 0
Try
Code:
ChDrive "C:\"
ChDir "C:\Users\" & Environ("username") & "\Downloads"

Thanks for suggesting also including the change drive command ... should have thought of that from a traditional batch cmd file perspective.

However, whilst commands don't fail there's still no change in the SaveAs dialog.
 
Last edited:
Upvote 0
This works for me
Code:
Sub t2()
ChDrive "C:\"
ChDir Environ("userprofile") & "\downloads\"
Application.GetSaveAsFilename
End Sub
 
Upvote 0
This works for me

does this work when just clicking file>save as>browse ?
running the code opens the downloads folder but just clicking save as always takes me to the open file location
using excel 2016
 
Upvote 0
Save as always defaults to the current location for a saved file, regardless of what the current directory is set to. You'd need a workbook_beforesave event to cancel the default dialog. Though if you don't want them to save the current workbook, perhaps you should either use a template or immediately save it as a temporary copy when opening it.
 
Upvote 0

Forum statistics

Threads
1,214,426
Messages
6,119,411
Members
448,894
Latest member
spenstar

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top