Mega Code Archive

 
Categories / VisualBasic Script / Excel
 

To save a workbook from a VBA program, use either the Save methods of the Workbook object

Sub saveWorkBook()     Workbooks("MyWorkbook.xls").save End Sub