Be the first user to complete this post

  • 0
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:

  1. VBA-Excel: Get the names of all WorkSheets in a Excel (WorkBook)
  2. Getting Started with Excel Macro
  3. Excel Macro - Visual Basic Editor
  4. Excel-VBA : Prevent Changing the WorkSheet Name
  5. Message Boxes in VBA Excel (Msgbox)
  6. VBA-Excel: Delete Blank Rows from Excel Work Sheet
  7. Introduction to Excel WorkBook
  8. Excel-VBA : Open a Excel File using Another Excel File using Browse Option.