E Egozite Jun 19, 2008 #1 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
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 Jun 19, 2008 #2 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
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 Jun 19, 2008 #3 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 Click to expand... You could use the addition operator: =a1+b2+c3+d4+...f5:f10...+aa4+ab6... --ron
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 Click to expand... You could use the addition operator: =a1+b2+c3+d4+...f5:f10...+aa4+ab6... --ron
T T. Valko Jun 19, 2008 #4 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.
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 Jun 19, 2008 #5 I believe you could use just one argument w/multiple areas. =SUM((A1,D2,H5,...Y57,G127,J205,F23,...U2,T1,T5,T87,...T99))
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 Jun 19, 2008 #6 Yes, you could but I was demonstrating how it could be done wrt the number of arguments.