X
xargon
Hi everyone,
What I am doing is programatically creating the HTML/XML structure o
an Excel 2000 document. I am almost done, however I am having problem
with some excel formulas.
I have no access to the actual column names (A, B, C,...etc.) I onl
have integer vales. So, basically I am trying to map these intege
vales to the actual column names.
So, for example, if I want to check to see if a particular text valu
is there in a range (A1, A3), the following works:
Code
-------------------
MATCH("MYTEXT", A1:A3, 0)
What I try to do is the following:
MATCH("MYTEXT", CONCATENATE(ADDRESS(1, 1, 1, 1), ":", ADDRESS(3, 1, 1, 1)), 0)
-------------------
However, this never works. The cocate operation should yield $A$1:$A$3
This literal substitution works, but the other way does not.
I am really confused. Any help on this would be really appreciated.
Thanks,
Xargo
What I am doing is programatically creating the HTML/XML structure o
an Excel 2000 document. I am almost done, however I am having problem
with some excel formulas.
I have no access to the actual column names (A, B, C,...etc.) I onl
have integer vales. So, basically I am trying to map these intege
vales to the actual column names.
So, for example, if I want to check to see if a particular text valu
is there in a range (A1, A3), the following works:
Code
-------------------
MATCH("MYTEXT", A1:A3, 0)
What I try to do is the following:
MATCH("MYTEXT", CONCATENATE(ADDRESS(1, 1, 1, 1), ":", ADDRESS(3, 1, 1, 1)), 0)
-------------------
However, this never works. The cocate operation should yield $A$1:$A$3
This literal substitution works, but the other way does not.
I am really confused. Any help on this would be really appreciated.
Thanks,
Xargo