ID: Q164810
The information in this article applies to:
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
To work around this problem, use the ExecuteExcel4Macro method in your macro.
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)"
Microsoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article.
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 xlvbmigrate
Keywords : kbprg kbdta KbVBA
Version : WINDOWS:97
Platform : WINDOWS
Issue type : kbbug
Last Reviewed: June 30, 1999