Skip to content

Latest commit

 

History

History
59 lines (37 loc) · 1.85 KB

Excel.Application.WorkbookAfterSave.md

File metadata and controls

59 lines (37 loc) · 1.85 KB
title keywords f1_keywords api_name ms.date ms.localizationpriority
Application.WorkbookAfterSave event (Excel)
vbaxl10.chm504114
vbaxl10.chm504114
Excel.Application.WorkbookAfterSave
04/05/2019
medium

Application.WorkbookAfterSave event (Excel)

Occurs after the workbook is saved.

Note

In Office 365, Excel supports AutoSave, which enables the user's edits to be saved automatically and continuously. For more information, see How AutoSave impacts add-ins and macros to ensure that running code in response to the WorkbookAfterSave event functions as intended when AutoSave is enabled.

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

Remarks

For information about how to use event procedures with the Application object, see Using events with the Application object.

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.

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

[!includeSupport and feedback]