Workbook.BeforeRemoteChange event (Excel)

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

Syntax

expression.BeforeRemoteChange

expression A variable that represents a Workbook object.

Return value

Nothing

Example

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

Private Sub Workbook_BeforeRemoteChange()
    'A remote user has made a change to this workbook.
    'The code in this subroutine will be run before those changes are merged.
End Sub

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.