Finding Last number in a column

R

Ron

How do I find the last number in a column of data and have it entered into
another cell?
 
G

Gord Dibben

=LOOKUP(99^99,A:A) will return last number in column A

=LOOKUP(2,1/(A1:A65535<>""),A1:A65535) will return anything.


Gord Dibben MS Excel MVP
 
P

Pete_UK

Try this:

=LOOKUP(10^10,A1:A1000)

Extend the range if required.

Hope this helps.

Pete
 
D

Domenic

To return the last numerical value, try...

=LOOKUP(9.99999999999999E+307,A2:A100)

Adjust the range accordingly.

Hope this helps!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top