Saving XLSX File in Excel VBA

In Excel, you can save a file using the VBA code. You can do it by specifying the path and name of a file in code, or by opening Save As window.

In this tutorial, I’m going to show you both ways.

A quick way to save a file in VBA

You can quickly save an XLSX file using this single line of code. In this case, you have to give a path and file name where the program should save the file.

In this code, the file name is given with the XLSX extension. You can drop it because there is specified the file format code: 51. This code means that the file will be saved in this format.

Open the SaveAs window

If you don’t want to place the name of the file in code each time you run the script, you can open a SaveAs window asking the user for the name and path.

This is the same window when you saving an Excel file for the first time or using Save As to choose a different name.

Display information after successful save

If you want to be sure that the file is saved correctly, you can display a box with the success message and file path of the file location.

After you run the code, the Save As will appear. Save the file to display the message.

Tomasz Decker is an Excel specialist, skilled in data analysis and financial modeling.