Excel Err Msg: Update References to Unopened Documents

Last reviewed: September 12, 1996
Article ID: Q98652
The information in this article applies to:
  • Microsoft Excel for Windows, versions 3.0, 4.0, 4.0a, 5.0

SUMMARY

Because 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

WORKAROUNDS

To work around this situation, do either of the following:

Workaround 1

  1. Select all information on the sheet.

  2. From the Edit menu, choose Copy.

  3. Open a new worksheet and choose Paste from the Edit menu.

  4. The hidden name(s) should not be copied from the clipboard to a new worksheet.

Workaround 2

Use 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
KBSubcategory:

Additional reference words: 3.0 3.00 4.0 4.00 4.0a 4.00a 5.0 5.00 link



THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: September 12, 1996
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.