Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
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
![]() |
|||
|
|||
![]()
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? |
#3
![]() |
|||
|
|||
![]()
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....) |
#4
![]() |
|||
|
|||
![]()
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....) |
#5
![]() |
|||
|
|||
![]()
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? |
#6
![]() |
|||
|
|||
![]()
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). |
#7
![]() |
|||
|
|||
![]()
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
![]() |
|||
|
|||
![]()
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? . |
#9
![]() |
|||
|
|||
![]()
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
![]() |
|||
|
|||
![]()
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
![]() |
|||
|
|||
![]()
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
![]() |
|||
|
|||
![]()
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
![]() |
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
need to find which numbers (3+) in a column sum to a value | Excel Discussion (Misc queries) | |||
I cannot get a column of numbers to sum, why? | Excel Discussion (Misc queries) | |||
I cannot get a column of numbers to sum, why? | Excel Worksheet Functions | |||
Cannot get a column of numbers to SUM...why? | Excel Worksheet Functions | |||
Adding column data | Excel Worksheet Functions |