Article ID: 110006
Article Last Modified on 6/4/2007
| Version of Excel | Condition | Update Remote References check box |
|---|---|---|
| Excel 2000 | The workbook is linked to external data. You click No when you receive the following prompt: "The workbook you opened contains automatic links to information in another workbook. Do you want to update this workbook with changes made to the other workbook?" | Cleared |
| Excel 2000 | The workbook is linked to external data. You click Yes when you receive the following prompt: "The workbook you opened contains automatic links to information in another workbook. Do you want to update this workbook with changes made to the other workbook?" | Selected |
| Excel 2002 | The workbook is linked to external data. You click Don't Update when you receive the following prompt: "This workbook contains links to other data sources. If you update the links, Excel attempts to retrieve the latest data. If you don't update, Excel uses the previous information." | Cleared |
| Excel 2002 | The workbook is linked to external data. You click Update when you receive the following prompt: "This workbook contains links to other data sources. If you update the links, Excel attempts to retrieve the latest data. If you don't update, Excel uses the previous information." | Selected |
| Excel 2003 | The workbook is linked to external data. You select Don't Update when you receive the following prompt: "This workbook contains links to other data sources. If you update the links, Excel will attempt to retrieve the latest data. If you don't update the links, Excel will use the previous information." | Cleared |
| Excel 2003 | The workbook is linked to external data. You click Update when you receive the following prompt: "This workbook contains links to other data sources. If you update the links, Excel will attempt to retrieve the latest data. If you don't update the links, Excel will use the previous information." | Selected |
Sub Example()
' The zero after updateLinks indicates that neither external nor
' remote references should be updated when the file is opened.
Workbooks.Open fileName:="C:\EXCEL\TEST.XLS", updateLinks:=0
' Turn off the Update Remote References setting for the workbook.
ActiveWorkbook.UpdateRemoteReferences = False
End Sub
Note The Update Remote References check box is not a universal
setting. When two workbooks are open, one workbook might have its Update Remote
References setting selected whereas the check box is
cleared in the other workbook. However, when you open a workbook, its Update Remote References
check box will be selected, no matter how it was saved, unless it contains
links to an external data source.
Additional query words: 8.00 XL97 XL98 XL7 XL5 calc XL XL2003 XL2002 XL2000
Keywords: kbdtacode kbhowto kbprogramming KB110006