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
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.