How do I always insert last cell from a increasing array ?

R

Radu

In a increasing array of values I want to use always the last value as input
in another formula. Is there a smart trick? Thanks
 
B

Bob Phillips

=INDEX(A:A,MATCH(9.99999999999999E307,A:A))

will get the last value in column A.

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Top