|
Be the first user to complete this post
|
Add to List |
VBA-Excel: WorkBook.Save Method
Save() method is used to save the changes in the workbook.
Save the active WorkBook.
- ActiveWorkBook.Save
Function FnSaveAllOpenedWorkBooks
For Each objWB in Application.WorkBooks
objWB.Save
Next
End Function
Also Read:
- VBA-Excel: Create or Add Worksheets at the Run time.
- VBA Codes - Record Macro
- VBA-Excel: Add/Insert multiple objects from a folder in an Excel Document.
- VBA-Excel: Create a WorkBook at Runtime.
- VBA-Excel: Get the names of all WorkSheets in a Excel (WorkBook)