In cell D2, I have the number 1.
The following concatenation
="A"&(D2+1)&":A21"
works out to be...A2:A21
WHY CAN I NOT USE THIS AS MY REFERENCE LOOK-UP IN THE MATCH FUNCTION??
IN OTHER WORDS, =MATCH($C$2,"A"&(D2+1)&":A21",0)
does NOT work?
Please help?
Thanks,
FLKulchar
F. Lawrence Kulchar - 31 May 2008 17:19 GMT
In other words, I wish to use the A2:A21 as a range reference??
FLKulchar
> In cell D2, I have the number 1.
>
[quoted text clipped - 14 lines]
>
> FLKulchar
Gary''s Student - 31 May 2008 17:21 GMT
You are very close!!
=MATCH($C$2,INDIRECT("A"&(D2+1)&":A21"),0)
whenever you are using a formula that displays a string like Z2:Z34
you need to use INDIRECT() because MATCH() wants a true range and not just a
string

Signature
Gary''s Student - gsnu200789
> In cell D2, I have the number 1.
>
[quoted text clipped - 14 lines]
>
> FLKulchar
FLKulchar - 31 May 2008 17:38 GMT
Thank you...
Now..It is PERFECT!!
thanks for the help...my MATCH "pulldown" now works thanks to your help.
FLKulchar
> You are very close!!
>
[quoted text clipped - 23 lines]
>>
>> FLKulchar
Gary''s Student - 31 May 2008 18:21 GMT
You are very welcome! Have a great weekend!

Signature
Gary''s Student - gsnu200789
> Thank you...
>
[quoted text clipped - 30 lines]
> >>
> >> FLKulchar