How can I get a vlookup (or another function) to look for the DATA in
the last row in of a column.
For ex... have data in column A... rows 1-5 have data filled in.
How can I get it to tell me what is in A5?
And tomorrow when I fill in data in row 6, how can I get it to
automatically report that data?
Don Guillett - 12 Oct 2006 19:08 GMT
just find a number or letter ("zzzzzz") larger possible
=INDEX(A:A,MATCH(9999999,A:A),1)

Signature
Don Guillett
SalesAid Software
dguillett1@austin.rr.com
> How can I get a vlookup (or another function) to look for the DATA in
> the last row in of a column.
[quoted text clipped - 5 lines]
> And tomorrow when I fill in data in row 6, how can I get it to
> automatically report that data?
ftahbaz@gmail.com - 12 Oct 2006 19:21 GMT
Perfect, thanks
> just find a number or letter ("zzzzzz") larger possible
> =INDEX(A:A,MATCH(9999999,A:A),1)
[quoted text clipped - 12 lines]
> > And tomorrow when I fill in data in row 6, how can I get it to
> > automatically report that data?
RagDyer - 12 Oct 2006 19:21 GMT
Try this for alpha or numeric:
=LOOKUP(2,1/(A1:A100<>""),A1:A100)

Signature
HTH,
RD
---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
> How can I get a vlookup (or another function) to look for the DATA in
> the last row in of a column.
[quoted text clipped - 5 lines]
> And tomorrow when I fill in data in row 6, how can I get it to
> automatically report that data?
Gord Dibben - 12 Oct 2006 19:27 GMT
Several different formulas.
=LOOKUP(9.99999999999999E+307,F:F) will return last numeric data in column F
=LOOKUP(REPT("z",255),B2:B10000) will return last non-numeric data in column B
=LOOKUP(2,1/(A1:A65516<>""),A1:A65516) will return last anything in column A
Gord Dibben MS Excel MVP
>How can I get a vlookup (or another function) to look for the DATA in
>the last row in of a column.
[quoted text clipped - 5 lines]
>And tomorrow when I fill in data in row 6, how can I get it to
>automatically report that data?
Max - 13 Oct 2006 02:15 GMT
> =LOOKUP(2,1/(A1:A65516<>""),A1:A65516) will return last anything in
> column A
Think that'll miss out what's possibly within A65517:A65535/6 <g>.
Perhaps either:
=LOOKUP(2,1/(A1:A65535<>""),A1:A65535)
=LOOKUP(2,1/(A2:A65536<>""),A2:A65536)

Signature
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
Gord Dibben - 13 Oct 2006 02:32 GMT
Thanks Max
'Nother one of those typos.
Gord
>> =LOOKUP(2,1/(A1:A65516<>""),A1:A65516) will return last anything in
>> column A
>Think that'll miss out what's possibly within A65517:A65535/6 <g>.
>Perhaps either:
>=LOOKUP(2,1/(A1:A65535<>""),A1:A65535)
>=LOOKUP(2,1/(A2:A65536<>""),A2:A65536)
Gord Dibben MS Excel MVP
Max - 13 Oct 2006 03:20 GMT
Pleasure`, Gord !

Signature
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
> Thanks Max
> 'Nother one of those typos.
> Gord