Can you sum over a range with one end fixed and the other infinite

  • Thread starter jimbeau_holland
  • Start date
J

jimbeau_holland

sum(a:a) sums over all elements in the "a" column. Is there a way to sum from
"a2" for instance all the way to the end of the "a" column?
 
D

Dave Peterson

=sum(a2:a65536)
in xl2003.

If you know you have text in A1, you can use:
=sum(a:a)

If you know that you have a number in A1:
=sum(a:a)-a1
 
Top