On Sun, 15 Jul 2007 17:10:00 -0700, coolerthancool
"Series" can have a number of different meanings.
If your series is listed in column A, and there are no blanks, this formula
will return the second to last entry:
=INDEX(A:A,COUNT(A:A)-1)
If your series is in column A, and there might be blanks or non-numbers listed,
then this **array-entered** formula will return the second to last number.
To array-enter a formula, after typing it into the formula bar, hold down
<ctrl><shift> while hitting <enter>. Excel will place braces {...} around the
formula.
=INDEX(A:A,LARGE(ROW(A1:A65535)*ISNUMBER(A1:A65535),2))
--ron