Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
CLR
 
Posts: n/a
Default

Depending on how your data is organized (if you have some consistant
identifier in each row you wish to sum, like the word "total", etc), you
might look at the SUMIF function

Vaya con Dios,
Chuck, CABGx3


"Fredneck Angela" <Fredneck wrote in
message ...
I am working on Excel 2003 and trying to add a long column of numbers.

Excel
will not allow me to enter more than 30 cells to be added. They are not
continuous (cells in a single column, but every other row).

Can anyone help?



  #2   Report Post  
Fredneck Angela
 
Posts: n/a
Default Adding more than 30 numbers in a column

I am working on Excel 2003 and trying to add a long column of numbers. Excel
will not allow me to enter more than 30 cells to be added. They are not
continuous (cells in a single column, but every other row).

Can anyone help?
  #3   Report Post  
Bernard Liengme
 
Posts: n/a
Default

You could name, say, the first 10 as Data1, the next 10 as Data2, etc
Method is: Insert|Name-Define; Data1 refers to A1,A3,A5,A7
The use =sum(Data1+Data2+Data3....)
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"Fredneck Angela" <Fredneck wrote in
message ...
I am working on Excel 2003 and trying to add a long column of numbers.
Excel
will not allow me to enter more than 30 cells to be added. They are not
continuous (cells in a single column, but every other row).

Can anyone help?



  #4   Report Post  
JE McGimpsey
 
Posts: n/a
Default

IF you don't have numbers in between the ones you want to sum, just sum
the entire range.

If you do have numbers, you can use something like this:

=SUMPRODUCT(--(MOD(ROW(A1:A100),2)=0),A1:A100)

which sums the even rows. Change the 0 to 1 to sum the odd rows.

Alternatively, select your desired cells and name them by entering a
name (say, "myrange", without quotes) in the Name box at the left of the
formula bar. Then you can use

=SUM(myrange)

to sum all the cells in the named range.



In article ,
Fredneck Angela <Fredneck wrote:

I am working on Excel 2003 and trying to add a long column of numbers. Excel
will not allow me to enter more than 30 cells to be added. They are not
continuous (cells in a single column, but every other row).

  #5   Report Post  
Jason Morin
 
Posts: n/a
Default

One way is to put a subset of the cell references in
parentheses. For example:

=SUM
((A1,A3,A5,A7,A9,A11,A13,A15,A17,A19,A21,A23,A25,A 27,A29,A
31,A33,A35,A37,A39,A41,A43,A45,A47,A49,A51,A53,A55 ,A57),A5
9,A61,A63,A65,A67,A69,A71,A73,A75,A77,A79,A81,A83, A85,A87,
A89)

Notice how the first 29 cell references (A1-A57) are in
parentheses.

HTH
Jason
Atlanta, GA

-----Original Message-----
I am working on Excel 2003 and trying to add a long

column of numbers. Excel
will not allow me to enter more than 30 cells to be

added. They are not
continuous (cells in a single column, but every other

row).

Can anyone help?
.



  #6   Report Post  
JE McGimpsey
 
Posts: n/a
Default

Did you try that? I get a #VALUE! error using the + operator.

Using the union operator works though:

=SUM(Data1,Data2,Data3)

In article ,
"Bernard Liengme" wrote:

You could name, say, the first 10 as Data1, the next 10 as Data2, etc
Method is: Insert|Name-Define; Data1 refers to A1,A3,A5,A7
The use =sum(Data1+Data2+Data3....)

  #7   Report Post  
Fredneck Angela
 
Posts: n/a
Default

Thanks - this led me to the easiest answer, which was to add together two
sets of SUM(), each with fewer than 30 values inside the parenthesis.

"Jason Morin" wrote:

One way is to put a subset of the cell references in
parentheses. For example:

=SUM
((A1,A3,A5,A7,A9,A11,A13,A15,A17,A19,A21,A23,A25,A 27,A29,A
31,A33,A35,A37,A39,A41,A43,A45,A47,A49,A51,A53,A55 ,A57),A5
9,A61,A63,A65,A67,A69,A71,A73,A75,A77,A79,A81,A83, A85,A87,
A89)

Notice how the first 29 cell references (A1-A57) are in
parentheses.

HTH
Jason
Atlanta, GA

-----Original Message-----
I am working on Excel 2003 and trying to add a long

column of numbers. Excel
will not allow me to enter more than 30 cells to be

added. They are not
continuous (cells in a single column, but every other

row).

Can anyone help?
.


  #8   Report Post  
Bernard Liengme
 
Posts: n/a
Default

Opps, typo for comma =SUM(data1,data2...)

--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"JE McGimpsey" wrote in message
...
Did you try that? I get a #VALUE! error using the + operator.

Using the union operator works though:

=SUM(Data1,Data2,Data3)

In article ,
"Bernard Liengme" wrote:

You could name, say, the first 10 as Data1, the next 10 as Data2, etc
Method is: Insert|Name-Define; Data1 refers to A1,A3,A5,A7
The use =sum(Data1+Data2+Data3....)



  #9   Report Post  
Bob Phillips
 
Posts: n/a
Default

That is such a smart work-around. Personally, I doubt that I would ever need
to sum more than 30 cells in this way but it is interesting to be aware of .

Good innovative stuff!

Regards

Bob


"Jason Morin" wrote in message
...
One way is to put a subset of the cell references in
parentheses. For example:

=SUM
((A1,A3,A5,A7,A9,A11,A13,A15,A17,A19,A21,A23,A25,A 27,A29,A
31,A33,A35,A37,A39,A41,A43,A45,A47,A49,A51,A53,A55 ,A57),A5
9,A61,A63,A65,A67,A69,A71,A73,A75,A77,A79,A81,A83, A85,A87,
A89)

Notice how the first 29 cell references (A1-A57) are in
parentheses.

HTH
Jason
Atlanta, GA

-----Original Message-----
I am working on Excel 2003 and trying to add a long

column of numbers. Excel
will not allow me to enter more than 30 cells to be

added. They are not
continuous (cells in a single column, but every other

row).

Can anyone help?
.



  #10   Report Post  
Ragdyer
 
Posts: n/a
Default

BUT ... Have you tried *simply* enclosing the whole shebang in *one set* of
double quotes ?

This does work:
=SUM((A1,A3,A5,...,A200))
--
Regards,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Jason Morin" wrote in message
...
One way is to put a subset of the cell references in
parentheses. For example:

=SUM
((A1,A3,A5,A7,A9,A11,A13,A15,A17,A19,A21,A23,A25,A 27,A29,A
31,A33,A35,A37,A39,A41,A43,A45,A47,A49,A51,A53,A55 ,A57),A5
9,A61,A63,A65,A67,A69,A71,A73,A75,A77,A79,A81,A83, A85,A87,
A89)

Notice how the first 29 cell references (A1-A57) are in
parentheses.

HTH
Jason
Atlanta, GA

-----Original Message-----
I am working on Excel 2003 and trying to add a long

column of numbers. Excel
will not allow me to enter more than 30 cells to be

added. They are not
continuous (cells in a single column, but every other

row).

Can anyone help?
.




  #11   Report Post  
Ragdyer
 
Posts: n/a
Default

Just tried it with Average(), and that works also!

Wonder how many others will accept the double quotes?
--
Regards,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Ragdyer" wrote in message
...
BUT ... Have you tried *simply* enclosing the whole shebang in *one set*

of
double quotes ?

This does work:
=SUM((A1,A3,A5,...,A200))
--
Regards,

RD

--------------------------------------------------------------------------

-
Please keep all correspondence within the NewsGroup, so all may benefit !
--------------------------------------------------------------------------

-
"Jason Morin" wrote in message
...
One way is to put a subset of the cell references in
parentheses. For example:

=SUM
((A1,A3,A5,A7,A9,A11,A13,A15,A17,A19,A21,A23,A25,A 27,A29,A
31,A33,A35,A37,A39,A41,A43,A45,A47,A49,A51,A53,A55 ,A57),A5
9,A61,A63,A65,A67,A69,A71,A73,A75,A77,A79,A81,A83, A85,A87,
A89)

Notice how the first 29 cell references (A1-A57) are in
parentheses.

HTH
Jason
Atlanta, GA

-----Original Message-----
I am working on Excel 2003 and trying to add a long

column of numbers. Excel
will not allow me to enter more than 30 cells to be

added. They are not
continuous (cells in a single column, but every other

row).

Can anyone help?
.



  #12   Report Post  
Bob Phillips
 
Posts: n/a
Default

RD,

Are you getting your quotes confused with your parentheses? Maybe time to
fix another drink <g

Bob


"Ragdyer" wrote in message
...
BUT ... Have you tried *simply* enclosing the whole shebang in *one set*

of
double quotes ?

This does work:
=SUM((A1,A3,A5,...,A200))
--
Regards,

RD

--------------------------------------------------------------------------

-
Please keep all correspondence within the NewsGroup, so all may benefit !
--------------------------------------------------------------------------

-
"Jason Morin" wrote in message
...
One way is to put a subset of the cell references in
parentheses. For example:

=SUM
((A1,A3,A5,A7,A9,A11,A13,A15,A17,A19,A21,A23,A25,A 27,A29,A
31,A33,A35,A37,A39,A41,A43,A45,A47,A49,A51,A53,A55 ,A57),A5
9,A61,A63,A65,A67,A69,A71,A73,A75,A77,A79,A81,A83, A85,A87,
A89)

Notice how the first 29 cell references (A1-A57) are in
parentheses.

HTH
Jason
Atlanta, GA

-----Original Message-----
I am working on Excel 2003 and trying to add a long

column of numbers. Excel
will not allow me to enter more than 30 cells to be

added. They are not
continuous (cells in a single column, but every other

row).

Can anyone help?
.




  #13   Report Post  
Ragdyer
 
Posts: n/a
Default

Yes, I DID mean Parenthesis !

And you're right, since it's 3 minutes after 12, time to start on today's
ration of Grog.<g
--
Regards,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Bob Phillips" wrote in message
...
RD,

Are you getting your quotes confused with your parentheses? Maybe time to
fix another drink <g

Bob


"Ragdyer" wrote in message
...
BUT ... Have you tried *simply* enclosing the whole shebang in *one set*

of
double quotes ?

This does work:
=SUM((A1,A3,A5,...,A200))
--
Regards,

RD


--------------------------------------------------------------------------
-
Please keep all correspondence within the NewsGroup, so all may benefit

!

--------------------------------------------------------------------------
-
"Jason Morin" wrote in message
...
One way is to put a subset of the cell references in
parentheses. For example:

=SUM
((A1,A3,A5,A7,A9,A11,A13,A15,A17,A19,A21,A23,A25,A 27,A29,A
31,A33,A35,A37,A39,A41,A43,A45,A47,A49,A51,A53,A55 ,A57),A5
9,A61,A63,A65,A67,A69,A71,A73,A75,A77,A79,A81,A83, A85,A87,
A89)

Notice how the first 29 cell references (A1-A57) are in
parentheses.

HTH
Jason
Atlanta, GA

-----Original Message-----
I am working on Excel 2003 and trying to add a long
column of numbers. Excel
will not allow me to enter more than 30 cells to be
added. They are not
continuous (cells in a single column, but every other
row).

Can anyone help?
.





Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
need to find which numbers (3+) in a column sum to a value Devin Excel Discussion (Misc queries) 1 February 11th 05 10:30 PM
I cannot get a column of numbers to sum, why? HHG Excel Discussion (Misc queries) 8 February 8th 05 12:55 PM
I cannot get a column of numbers to sum, why? HHG Excel Worksheet Functions 4 February 8th 05 04:23 AM
Cannot get a column of numbers to SUM...why? HHG Excel Worksheet Functions 3 February 8th 05 03:49 AM
Adding column data stge Excel Worksheet Functions 1 November 4th 04 05:26 PM


All times are GMT +1. The time now is 02:37 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"