VBA code for file save as in Excel 2013

ariel20029

Board Regular
Joined
Jun 20, 2013
Messages
97
Hi,
I have some code that needs to be updated but I'm not sure how to change. I am trying to save as into Excel 2013 excel workbook. This is the code I have:


FileSaveName = Application.GetSaveAsFilename(InitialFileName:=ActiveWorkbook.Name, FileFilter:="Excel 2003 (*.xls), *.xls")


If FileSaveName <> False Then

ActiveWorkbook.SaveAs FileSaveName, FileFormat:=56 'xlExcel8 (97-2003 format xls)


Can you please help me?
thanks,
Sharon
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
If you mean you using 2013 and want to save with the macro still in the workbook then try...

Code:
Sub ariel()
    Dim FileSaveName As Variant

    FileSaveName = Application.GetSaveAsFilename(FileFilter:= _
                                                 "Excel Macro-Enabled Workbook (*.xlsm), *.xlsm", InitialFileName:=ActiveWorkbook.Name)
    
    If FileSaveName <> False Then
        Application.DisplayAlerts = False
        ActiveWorkbook.SaveAs Filename:=FileSaveName, FileFormat:=52
        Application.DisplayAlerts = True
        Exit Sub
    End If

End Sub
 
Upvote 0

Forum statistics

Threads
1,214,926
Messages
6,122,306
Members
449,079
Latest member
juggernaut24

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