Thank everyone for suggestions
Yes, I want to know if the string "ABC" is part of the *formula* and
not the
*result* of the formula?
Insert>Name>Define
Name: Formula
Refers to: =GET.CELL(6,INDIRECT("RC[-1]",FALSE))
OK
It works when I insert a path in cell A1 and check it in cell B1, but
it
does not work if I use this approach in another cell.
My case is that I need to search the path formula in B2 and check it
on cell
J1.
Do I need to change any following parameter in order to make it work
for my
case?
Refers to: =GET.CELL(6,INDIRECT("RC[-1]",FALSE))
Do you have any suggestions?
Thank everyone very much for any suggestions
Eric
T. Valko said:
Do you want to know if the string "ABC" is part of the *formula* and
not the
*result* of the formula?
A1 contains this formula:
='C:\ABC\[Sample.xls]Sheet1'!A1
Create this named formula:
Insert>Name>Define
Name: Formula
Refers to: =GET.CELL(6,INDIRECT("RC[-1]",FALSE))
OK
Then enter this formula in B1:
=IF(ISNUMBER(SEARCH("ABC",Formula)),"ABC","")
Biff
Eric said:
Under cell A1, which contains a link to file
C:\ABC\[Sample.xls]Sheet1!A1.
In cell B1, I would like to detect whether cell A1 contains "ABC"
characters
inside this path, if yes, then return String "ABC", else nothing
"".
Does anyone have any suggestions?
Thank in advance for any suggestions
Eric