Excel Err Msg: Update References to Unopened DocumentsLast reviewed: September 12, 1996Article ID: Q98652 |
The information in this article applies to:
SUMMARYBecause some macros and add-ins (such as SOLVER.XLA), create hidden names on a sheet, links may exist even after you attempt to remove all known references (including objects and formulas). In this situation, when you open a worksheet containing the hidden links, you may receive the following error message:
Update References to Unopened Documents WORKAROUNDSTo work around this situation, do either of the following:
Workaround 1
Workaround 2Use the following macro to find and delete all hidden names in a sheet:
A1: =SET.NAME("H.Names",NAMES(GET.DOCUMENT(1),2)) A2: =IF(ISNA(H.Names)) A3: =ALERT("No Hidden Names Were Found") A4: =HALT() A5: =END.IF() A6: =FOR("x",1,COUNTA(H.Names)) A7: =DELETE.NAME(INDEX(H.Names,x)) A8: =NEXT() A9: =RETURN() REFERENCES"Online Help," version 5.0 "Function Reference", version 4.0, page 283 "Function Reference", version 3.0, page 158
|
KBCategory: kberrmsg
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |