Formulir Kontak

Nama

Email *

Pesan *

Cari Blog Ini

Save As An Excel File

Save an Excel File Using VBA

Save As an Excel File

To save a workbook as an Excel file, use the SaveAs method.

Save As a File on the Current Location

The following code saves a workbook as an Excel file on the current location:

ActiveWorkbook.SaveAs Filename:="C:\Users\your_user_name\Desktop\your_file_name.xlsx"

Save As a File on a Specific Location

To save a workbook as an Excel file on a specific location, use the SaveAs method with the Filename parameter:

ActiveWorkbook.SaveAs Filename:="C:\Users\your_user_name\Documents\your_file_name.xlsx"

Conclusion

Saving an Excel file using VBA is a quick and easy way to save your work. You can use the SaveAs method to save a workbook as an Excel file on the current location or on a specific location.

By following the steps outlined in this article, you can easily save your Excel files using VBA.


Komentar