Bottom value in a list

  • Thread starter Amy Spreadsheet
  • Start date
A

Amy Spreadsheet

Hi,
Column D has a list that continuously grows down the column.
The list starts in D4.

I need the last value at the bottom of the list reported in D1.

The values are numbers and the numeric range is 1 thru 31 mixed.

Thank-you in advanced.
Amy
 
P

Peo Sjoblom

A couple of ways, if indeed there are no blank cells in-between you can use
this

=INDEX($D$4:$D$10000,COUNT($D$4:$D$10000))

replace 10000 with an approx number of cells that you think can be used

Another way

=LOOKUP(99^99,$D$4:$D$10000)

which will work with blank cells as well

--


Regards,


Peo Sjoblom
 
J

Jacob Skaria

Try the below formula in D1
=LOOKUP(10^10,D4:D10000)

If this post helps click Yes
 
G

Gord Dibben

In D1 enter =LOOKUP(99^99,D4:D5000)


Gord Dibben MS Excel MVP

On Tue, 3 Nov 2009 08:15:01 -0800, Amy Spreadsheet <Amy
 

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