View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Harlan Grove[_2_] Harlan Grove[_2_] is offline
external usenet poster
 
Posts: 1,231
Default Finding the LAST value in a column

Toppers wrote...
=LOOKUP(10^99,A:A)

will return last value in column A

....

Picky: it'll return the last numeric value in the column, but it won't
return any, text, boolean or error value that might come after the
last numeric value. To return the last value regardless of type,

=IF(COUNT(A65536),A65536,LOOKUP(2,1/NOT(ISBLANK(A1:A65535)),A1:A65535))