VBA Save as dialog box opening

bliven731

New Member
Joined
Aug 29, 2013
Messages
22
Is there a way to use VBA to open the save as dialog box, set a default name from cell information, and pick the save as file type?

Basically I want it to select sheet 3, Do file save as, default the name as (if I put quote marks I want the cell contents), "D3" "B3"-"C3" So it would be 123456 1-2019 (123456 is D3 contents, 1 is B3 contents, 2019 is C3 contents, and also make the save as file type "CSV (Comma delimited)". That is where the macro would end so that the end user could select where they actually want to save the file. It obviously has to select sheet 3 first because CSV only saves a single sheet.

The file name part is not required if that's too hard to do, the important part is selecting the file type, but the name thing would be nice if it's easy.
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
Hi
It's a copy paste from something I wrote ages ago, but you might be able to covert this to your needs?
HTH

VBA Code:
Sub SaveAs()
' Export Details
    Dim Filenames As Variant
    Dim Filefilter As String
    Dim Msg As String
       
    Filefilter = "2010 Excel Workbook (*.xlsx),*.xlsx"
           Filenames = Application.GetSaveAsFilename(, Filefilter)
    
    If Filenames = False Then GoTo SveCnl Else
        
        ActiveWorkbook.SaveAs Filenames, xlOpenXMLWorkbook
        

    On Error GoTo SveCnl
    
        Msg = "The " & Name & " Macro is Complete!" & vbCrLf & vbCrLf
        Msg = Msg & "This file has been saved as: " & vbCrLf & vbCrLf
        Msg = Msg & Filenames
        MsgBox Msg, vbInformation

        ActiveWorkbook.Saved = True
        
    On Error Resume Next
    Exit Sub
    
SveCnl:
        MsgBox "The Save has been Cancelled!", vbInformation
        ActiveWorkbook.Saved = False
End Sub
 
Upvote 0
So from what your have posted I think I mostly got it figured out but how do I actually tell it to save it as a CSV (comma delimited)? This is what I have come up with.

VBA Code:
Sub Save()
Dim IntialName As String
Dim fileSaveName As Variant
InitialName = Range("D3") & " " & Range("B3") & "-" & Range("C3")
fileSaveName = Application.GetSaveAsFilename(InitialFileName:=InitialName, _
    fileFilter:="Excel Files (*.csv), *.csv")

If fileSaveName <> False Then
    MsgBox "Save as " & fileSaveName
End If
End Sub
 
Upvote 0
Hi. I think it's just as easy as changing

"2010 Excel Workbook (*.xlsx),*.xlsx"
to
"CSV (*.csv),*.csv"

Let me know if that doesn't work and I'll check properly
 
Upvote 0
Okay I switched to using your code and the CSV change seemed to work (well I had to type the full name but otherwise it was good). How can I set the initial name though? This code worked with a different implementation but doesn't seem to work when inserted into your code.

VBA Code:
Dim InitialName as String
InitialName = Range("D3") & " " & Range("B3") & "-" & Range("C3")

Here is the current attempted use. The save as box is generating with the correct file format so that is good, but it's not putting any name in the field.

VBA Code:
Sub Savetest()
' Export Details
    Dim Filenames As Variant
    Dim Filefilter As String
    Dim Msg As String
    Dim InitialName As String

    Filefilter = "CSV (Comma delimited)(*.csv),*.csv"
           Filenames = Application.GetSaveAsFilename(, Filefilter)
    InitialName = Range("D3") & " " & Range("B3") & "-" & Range("C3")
   
    If Filenames = False Then GoTo SveCnl Else
       
        ActiveWorkbook.SaveAs Filenames, xlOpenXMLWorkbook
       

    On Error GoTo SveCnl
   
        Msg = "The " & Name & " Macro is Complete!" & vbCrLf & vbCrLf
        Msg = Msg & "This file has been saved as: " & vbCrLf & vbCrLf
        Msg = Msg & Filenames
        MsgBox Msg, vbInformation

        ActiveWorkbook.Saved = True
       
    On Error Resume Next
    Exit Sub
   
SveCnl:
        MsgBox "The Save has been Cancelled!", vbInformation
        ActiveWorkbook.Saved = False
End Sub
 
Upvote 0
Try

VBA Code:
InitialName = Range("D3").value & " " & Range("B3").value & "-" & Range("C3").value
 
Upvote 0
No. It's because I'm an idiot.

I'd deleted a bunch of stuff from my code to make it easier to understand, I deleted too much. I think this will correct

VBA Code:
        Filenames = Application.GetSaveAsFilename(InitialName, Filefilter)
 
Upvote 0
No. It's because I'm an idiot.

I'd deleted a bunch of stuff from my code to make it easier to understand, I deleted too much. I think this will correct

VBA Code:
        Filenames = Application.GetSaveAsFilename(InitialName, Filefilter)

Yep, that's exactly what I ended up doing, thank you!
 
Upvote 0
Well the code in general works, but I think the filefilter I have for CSV just isn't right or something. It pulls the name as requested and it saves the file as a ".csv" file, except it gives this error message. When I hit yes, it saves it, but when I open the file it gives 2nd error. It's also not saving the file as an actual csv, because if I right click and open the file in notepad, it is bringing up gibberish instead of the expected text.
1584042318893.png
1584042355317.png


Here is a posting of the code again if anyone has any idea what is wrong with the file format.
VBA Code:
Sub Savetest()
' Export Details
    Dim Filenames As Variant
    Dim Filefilter As String
    Dim Msg As String
    Dim InitialName As String
    InitialName = Range("D3") & " " & Range("B3") & "-" & Range("C3")
    Filefilter = "CSV (Comma delimited)(*.csv),*.csv"
           Filenames = Application.GetSaveAsFilename(InitialName, Filefilter)
    
   
    If Filenames = False Then GoTo SveCnl Else
       
        ActiveWorkbook.SaveAs Filenames, xlOpenXMLWorkbook
       

    On Error GoTo SveCnl
   
        Msg = "The " & Name & " Macro is Complete!" & vbCrLf & vbCrLf
        Msg = Msg & "This file has been saved as: " & vbCrLf & vbCrLf
        Msg = Msg & Filenames
        MsgBox Msg, vbInformation

        ActiveWorkbook.Saved = True
       
    On Error Resume Next
    Exit Sub
   
SveCnl:
        MsgBox "The Save has been Cancelled!", vbInformation
        ActiveWorkbook.Saved = False
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,693
Members
448,979
Latest member
DET4492

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