Why not just use
=SUM(A:A)

Signature
HTH
Bob Phillips
(replace somewhere in email address with gmail if mailing direct)
> Lets say I have some numbers in the range A1:A10 and I have to take a
> sum of it in cell B1, I will use the formula =SUM(A1:A10).
[quoted text clipped - 9 lines]
>
> Sandy
aidan.heritage@virgin.net - 21 Jun 2006 13:58 GMT
providing you don't have blanks then
=SUM(a1:OFFSET(a1,COUNTA(a:a)-1,0))
will give you the dynamic you want - but as Bob says, why not just use
the entire column?!
> Why not just use
>
[quoted text clipped - 20 lines]
> >
> > Sandy
sandip.dhamapurkar@gmail.com - 21 Jun 2006 14:03 GMT
Thank you both of you for your answers. I really appreciate