View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Don Guillett Don Guillett is offline
external usenet poster
 
Posts: 10,124
Default Find value in bottom cell in a column

use match to find the row of any number larger than possible in your column
and index to give you the value in that row. Use "zzzzzzzzzz" for text.
=INDEX(A:A,MATCH(99999999999999,A:A))

--
Don Guillett
SalesAid Software

wrote in message
ups.com...
Quick question. How do I get the value of the bottom cell in a certain
column (actually always column A)?