How to sum more than 30 cells

J

jmcclain

I am trying to sum more than 30 cells (non sequential). I have used the
following for any # of cells less than 30

=sum(a1,a4,a7,a9)

However, how can I handle this when I have more than 30 cells to total?

The spreadsheet is 15 years old and would be almost impossible to modify.
Is there a different function that can accomplish this goal?

Thanks

Jon
 
D

Dave Peterson

One way:
=sum(30 cells)+sum(30 more cells)+....

You may want to consider adding a helper column (new column A???).

You could put an indicator (x) in each row that should have it's corresponding
value in column B added:

=sumif(a:a,"x",b:b)

You could hide this helper column when you were done making the entries.
 
G

Gord Dibben

Not "every" function for sure but I don't have enough testing done to know
which.

Most of the mathematical functions like AVERAGE and COUNT take more than 30
args with the double parens.

When you have tried them all Ashish, post the list<g>


Gord
 
J

jacqmagno

thanks for this, much better than what i've been used to doing (the hidden additional column :))
 
L

lhkittle

I am trying to sum more than 30 cells (non sequential). I have used the
following for any # of cells less than 30

=sum(a1,a4,a7,a9)

However, how can I handle this when I have more than 30 cells to total?

The spreadsheet is 15 years old and would be almost impossible to modify.
Is there a different function that can accomplish this goal?

Thanks

Jon

Hi Jon,

You got plenty of suggestions but you could select all the cells you want to sum and name them. I selected 40 cells and named them Thurty then used =sum(Thurty)

HTH
Regards,
Howard
 

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