How can I SUM all values in a column where the rows...

J

JRThomas

I am trying to write a formula that will sum all cells in a column no matter
how long the worksheet becomes. I have this as the current entry:
=SUM(D10:)

What would I enter for the value after the colon?
 
P

PCLIVE

Just specify a row that is well beyond any point that your data will reach.

=SUM(D10:D10000)

HTH,
Paul
 
R

Roger Govier

Hi

With XL2003 or lower, you could just use
=SUM(D10:D65536)
For XL2007 it would be
=SUM(D10:D1048576)

It might be better to create a dynamic range
Insert>name>Define>Name myRange Refers to =D10:INDEX(D:D,COUNTA(D:D))
The use
=SUM(myRange)
 
P

Pete_UK

If the formula is not in column D, then you could use this:

=SUM(D:D)-SUM(D1:D9)

i.e. add up the complete column and take away any numbers in the first
9 cells.

Hope this helps.

Pete
 

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

Top