Skip to content

Latest commit

 

History

History
41 lines (26 loc) · 840 Bytes

Excel.Workbook.AfterRemoteChange.md

File metadata and controls

41 lines (26 loc) · 840 Bytes
title keywords f1_keywords api_name ms.date ms.localizationpriority
Workbook.AfterRemoteChange event (Excel)
vbaxl10.chm504121
vbaxl10.chm504121
Excel.Workbook.AfterRemoteChange
05/25/2019
medium

Workbook.AfterRemoteChange event (Excel)

Occurs after a remote user's edits to the workbook are merged.

Syntax

expression.AfterRemoteChange

expression A variable that represents a Workbook object.

Return value

Nothing

Example

This example notifies the user that there was an incoming remote change.

Private Sub Workbook_AfterRemoteChange()
    'A remote user has made a change to this workbook and that change has been merged.
    'The code in this subroutine will now be run.
End Sub

[!includeSupport and feedback]