Skip to content

Latest commit

 

History

History
53 lines (27 loc) · 1.42 KB

4efa76bd-dd9f-3c7b-efa1-e1815ac8774d.md

File metadata and controls

53 lines (27 loc) · 1.42 KB

Application.WorkbookAfterSave Event (Excel)

Occurs after the workbook is saved.

Syntax

expression . WorkbookAfterSave( Wb , Success )

expression A variable that represents an Application object.

Parameters

Name Required/Optional Data Type Description
Wb Required Workbook The workbook being saved.
Success Required Boolean Returns True if the save operation was successful; otherwise False .

Return Value

Nothing

Example

The following code example displays a message box if the workbook was successfully saved. This code must be placed in a class module and an instance of that class must be correctly initialized. For more information about how to use event procedures with the Application object, seeUsing Events with the Application Object.

Private Sub App_WorkbookAfterSave(ByVal Wb As Workbook, _ 
 ByVal Success As Boolean) 
If Success Then 
 MsgBox ("The " & Wb.Name & " workbook was successfully saved.") 
End If 
End Sub

See also

Concepts

Application Object

Other resources

Application Object Members