Workbook.UpdateRemoteReferences Property

Excel Developer Reference

True if Microsoft Excel updates remote references in the workbook. Read/write Boolean.

Syntax

expression.UpdateRemoteReferences

expression   A variable that represents a Workbook object.

Remarks

When a new workbook is created, the default value for the UpdateRemoteReferences property is True and dynamic data exchange (DDE) links and OLE links update automatically. If the value is False, DDE links and OLE links do not update automatically or during recalculation.

Example

This example causes remote references to update automatically in the active workbook.

Visual Basic for Applications
  ActiveWorkbook.UpdateRemoteReferences = True

See Also