Finding Last number in a column

  • Thread starter Thread starter Ron
  • Start date Start date
R

Ron

How do I find the last number in a column of data and have it entered into
another cell?
 
=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
 
Try this:

=LOOKUP(10^10,A1:A1000)

Extend the range if required.

Hope this helps.

Pete
 
To return the last numerical value, try...

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

Adjust the range accordingly.

Hope this helps!
 
Back
Top