SAve AS FileName

Learn_VBA

New Member
Joined
Oct 9, 2017
Messages
25
Hello

I am having difficulty with the Get Save FileName below. It carried out the code until the very end. I have difficulties Saving the file.

Also, if I want the dialog box to open with a dafault folder, how do I include the syntax within the code below.

Thank you



Dim Ret
strFileName = ProjID & "_" & TCG & "_" & Competitor '<~~ You can set Default name here
Ret = Application.GetSaveAsFilename(InitialFileName:=strFileName, _
FileFilter:="Excel Files (*.xlsx), *.xlsx", _
FilterIndex:=1, _
Title:="Select Folder and File Name to save Impact Assesment")
If Ret <> False Then
ActiveWorkbook.SaveAs FileName:=Ret
Else: Exit Sub
End If
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
Is the file you are trying to save have this macro (or other VBA code in it)?
If so, you cannot save it as an "xlsx".

To get the default folder, add a "ChrDir" live just before the GetSaveAsFileName step, i.e.
Code:
[COLOR=#ff0000]    ChDir "C:\Temp"[/COLOR]
    Ret = Application.GetSaveAsFilename(InitialFileName:=strFileName, _
        FileFilter:="Excel Files (*.xlsx), *.xlsx", _
        FilterIndex:=1, _
        Title:="Select Folder and File Name to save Impact Assesment")
 
Upvote 0

Forum statistics

Threads
1,216,122
Messages
6,128,967
Members
449,480
Latest member
yesitisasport

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