Determining if a cell has an external reference ...

M

M100C

All,
Is there a way to determine whether a range (cell) has an external
reference (e.g. ='C:\Documents and Settings\M100C\My Documents
\Spreadsheets\[networth.xls]Sheet1'!$E$1) without parsing the Formula
property? I could not find any other range properties that seemed to
unambiguously indicate that the source of data was outside the
workbook.

If not, I have not considered all of the potential Formula property
values for various data sources, and if parsing is needed, is there a
specific string or characters (maybe [*]) that would indicate that the
range has an external reference.

Thanks,
Chris
 
J

JLGWhiz

Using VBA:

ActiveCell.ShowPrecedents 'To show the arrows

ActiveSheet.ActiveCell.ShowPrecedents remove:=True
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top