Thanks, I had found that but I don't have the definite "A" reference, it
could be any column in the range.
> =LOOKUP(2,1/(A1:A65535<>""),A1:A65535)
>
[quoted text clipped - 13 lines]
> > Any assistance would be greatly appreciated.
> > Thanks
Gaurav - 06 Feb 2008 17:11 GMT
yeah..it was just an example.
> Thanks, I had found that but I don't have the definite "A" reference, it
> could be any column in the range.
[quoted text clipped - 17 lines]
>> > Any assistance would be greatly appreciated.
>> > Thanks
Pete_UK - 06 Feb 2008 17:39 GMT
Your MATCH formula will return the relative position of the cell in
the horizontal range you use. If this number is less than 27, then you
can convert the number to a letter by means of:
CHAR(x+64)
where x is the output from your MATCH formula. Perhaps you can then
incorporate this letter in your formula by means of the INDIRECT
function, along the lines of:
=LOOKUP(2,1/(INDIRECT(CHAR(x+64)&"1:"&CHAR(x
+64)&"65535")<>""),INDIRECT(CHAR(x+64)&"1:"&CHAR(x+64)&"65535"))
Hope this helps.
Pete
> Thanks, I had found that but I don't have the definite "A" reference, it
> could be any column in the range.
[quoted text clipped - 18 lines]
>
> - Show quoted text -