Retrieving last actual value in a list

J

jonny

I am trying to get excel to identify the last numerical value in a column,
but depending on data fed in the last value may be in a different row wihtn
a column. For example in one instance the last value may be A3. In another
A5, in another A6 etc. Does anyone know the formula that I would put in
another cell to return the value of the last cell in column A that actually
has a value. Many thanks in advance.

Jonny
 
M

Mike H

Hi,

You don't say wheter you want the value or the row so:-

Value
=LOOKUP(10^10,A:A)

Row
=MATCH(10^10,A:A)

Mike
 
E

Excel_Learner

If value is no. then
=index(A:A, match(999.9999999, A:A, 1)) and value is text
=index(A:A, match("zzzzzzzzzzzzzzzzzzzzzzz", A:A, 1)
Kindly let me know if these work.
 

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