Is there an expression to return value of last entry in a range?

R

richard.leask

I am probably just having a brain freeze but I can't figure out how to
create an expression that will return the last value entered in a
range of numbers. i.e. B5:B147 is a column where a new value is added
each day below the previous day's entry and I need to return the value
in the cell with the last (bottom) entry. Any suggestions?
 
D

Domenic

For the last numerical value, try...

=LOOKUP(9.99999999999999E+307,B5:B147)

For the last text value, try...

=LOOKUP(REPT("z",255),B5:B147)

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