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

  • Thread starter Thread starter jimbeau_holland
  • Start date 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?
 
=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
 
Depending on what version of Excel you're using:

=SUM(A2:A65536)
=SUM(A2:A1048576)

--
Biff
Microsoft Excel MVP


"(e-mail address removed)"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top