|
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: UsedRange
- VBA-Excel: Application.Wait OR Wait Method
- VBA-Excel: Select and Activate Cells - Select
- VBA-Excel: Get the names of all WorkSheets in a Excel (WorkBook)
- VBA-Excel: Create a WorkBook at Runtime.