Showing Last Value in a column

  • Thread starter Thread starter Cadders
  • Start date Start date
C

Cadders

Hi - is there any way that if I have a column with numbers in each cell, to
be able to put in a formula (without using a vlookup) that will give me the
last value in that column please?
(e.g the column numbers range from 1 to 20 and I want a cell to bring
through the value of 20)

thanks in advance
 
If the numbers are in ascending order then the last value in the range
should be the max value:

=MAX(A1:A100)

If the numbers are in random order:

=LOOKUP(1E100,A1:A100)
 

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

Back
Top