I want to add more that 30 noncontiguous cells in Excel

  • Thread starter Thread starter Egozite
  • Start date Start date
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
 
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
 
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
 
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.
 
I believe you could use just one argument w/multiple areas.
=SUM((A1,D2,H5,...Y57,G127,J205,F23,...U2,T1,T5,T87,...T99))
 
Yes, you could but I was demonstrating how it could be done wrt the number
of arguments.
 
Back
Top