XL97: Run-Time Error Using ShowDependents Method

Last reviewed: February 27, 1998
Article ID: Q164810
The information in this article applies to:
  • Microsoft Excel 97 for Windows

SYMPTOMS

When you run a Visual Basic for Applications macro that uses the ShowDependents method, you may receive the following error message:

   Run-time error '1004':
   ShowDependents method of Range class failed

WORKAROUND

To work around this problem, use the ExecuteExcel4Macro method in your macro.

Examples

If your macro contains the following line of code to trace formula dependents

   Selection.ShowDependents

replace it with the following line of code:

   Application.ExecuteExcel4Macro "TRACER.DISPLAY(FALSE,TRUE)"

If your macro contains the following line of code to remove the arrows that trace formula dependents

   Selection.ShowDependents Remove:=True

replace it with the following line of code:

   Application.ExecuteExcel4Macro "TRACER.DISPLAY(FALSE,FALSE)"

STATUS

Microsoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.

REFERENCES

For more information about auditing, click the Index tab in Microsoft Excel Help, type the following text

   auditing formulas, tracing dependents and precedents

and then double-click the selected text to go to the "About examing the structure of formulas" topic.


Additional query words: XL97 xl97vbmigrate
Keywords : kbprg
Version : WINDOWS:97
Platform : WINDOWS
Issue type : kbbug


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: February 27, 1998
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.