Assuming the numbers are contiguous - there are no spaces:
Define the following named formula:
Code:
BIGNUM
=9.99999999999999E+307
Then, assuming the last ten numbers you want to sum are in column D, use this:
Code:
=AVERAGE(INDEX(D:D,MATCH(BIGNUM,D:D)-10+1):INDEX(D:D,MATCH(BIGNUM,D:D)))
or variation thereof.
Hope that helps...