I want to add more that 30 noncontiguous cells in Excel

E

Egozite

I have a string of noncontiguous cells in excel that I need the total of, but
I can't enter more that 30 using the sum function
 
G

Gary''s Student

There are two easy solutions:

1. Cascade the sums - that is use more than one sum function.
2. Make your collection of disjoint cells into a name range
 
R

Ron Rosenfeld

I have a string of noncontiguous cells in excel that I need the total of, but
I can't enter more that 30 using the sum function

You could use the addition operator:

=a1+b2+c3+d4+...f5:f10...+aa4+ab6...
--ron
 
T

T. Valko

You can also use multiple area references:

=SUM((A1,D2,H5,...Y57),(G127,J205,F23,...U2),(T1,T5,T87,...T99))

The above formula contains 3 arguments. Each set of (...) is a single
argument.
 
J

JMB

I believe you could use just one argument w/multiple areas.
=SUM((A1,D2,H5,...Y57,G127,J205,F23,...U2,T1,T5,T87,...T99))
 
T

T. Valko

Yes, you could but I was demonstrating how it could be done wrt the number
of arguments.
 

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