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
@TutorialHorizon
Save() method is used to save the changes in the workbook.
Save the active WorkBook.
Function FnSaveAllOpenedWorkBooks For Each objWB in Application.WorkBooks objWB.Save Next End Function