View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
T. Valko T. Valko is offline
external usenet poster
 
Posts: 15,768
Default CELL EQUALS LAST NONBLANK CELL IN A COLUMN

The best solution to this depends on many conditions. Among those a

What type of data is in the range, is it text or numeric, or can it be both?
Are there any empty/blanks cells *within* the range?
Are there any formulas in the range that might return formula blanks?

As a starting point you can try something like this. Assumes no empty/blank
cells within the range:

=IF(COUNTA(A1:A10),INDEX(A1:A10,COUNTA(A1:A10)),"" )

--
Biff
Microsoft Excel MVP


"Vicky" wrote in message
...
Can someone give me a function to use so that the cell at the bottom of a
column equals the last nonblank cell above in that column?