This macro will save all of the workbooks open in Excel.
Public Sub SaveAll()
Dim WB As Workbook
For Each WB In Workbooks
WB.Save
Next WB
Application.StatusBar = "All Workbooks Saved."
End Sub
Public Sub SaveAll()
Dim WB As Workbook
For Each WB In Workbooks
WB.Save
Next WB
Application.StatusBar = "All Workbooks Saved."
End Sub
No comments:
Post a Comment