I would type the formula "@sum( "and then while holding the shift botton down, select the cells you want added in. when done, hit enter.
I'm sure that there is a fancy formula, but it would take me 4 or 5 years to figure it out.
2007-01-03 07:49:56
·
answer #1
·
answered by need a boy 2
·
0⤊
0⤋
I believe you want to ad the rows with the least amount of manual work. The best solution is to add an extra column that will depict whether a row is even or odd, then use the SUMIF function. I will assume that your data is in column A and I will put the answers in cells A101 and A102 for the odd and even cells respectively.
The extra column will be column B. In cell B1,copy the following formula: =MOD(ROWS(B1)). Copy this formula to the other 99 cells in column B. You will see a 0 for even rows and a 1 for odd rows.
In cell A101, copy this formula: =SUMIF(B1:B100, 1, A1:A100)
In cell A102, copy this formula: =SUMIF(B1:B100, 0, A1:A100)
If you look at Excel Help for the SUMIF function, it explains how the parameters are used: the first parameter is the range that has the conditions to determine if a row will be added or not; the 2nd parameter says to add if there is a 0 - or a 1 - in the row; and the 3rd parameter tells you where the data to be added comes from.
2007-01-07 02:54:36
·
answer #2
·
answered by Renaud 3
·
0⤊
0⤋
What I would do is insert a new column. In that column enter 1 thru 50 in the even rows and a through zz in the odd rows. Then sort the sheet my that new column. Sum the numerics , then sum the alphas. Be sure to copy, paste special value because when you resort the sheet, the calculation will get honked. Good luck.
-MM
2007-01-03 07:58:01
·
answer #3
·
answered by Anonymous
·
0⤊
0⤋
VIP seats for the Topeka Kansas show coming up next spring would probably be best. Spring in Kansas is a great time... the weather is nice, and there are all kinds of bizarre cars that look like tanks driving randomly across fields. It's like the Road Warrior, but in the Dust Bowl, not Oz.
2016-05-22 23:29:14
·
answer #4
·
answered by Anonymous
·
0⤊
0⤋
Ok, so I am going to assume that your numbers are in column A.
Use this formula in column B:
=IF(MOD(CELL("row",A1),2), 0, A1)
Use this formula in column C:
=IF(MOD(CELL("row",A1),2), A1, 0)
Put that formula into all of the cells in the columns. (Put the formula into row 1, then drag down to row 100 so that the formula changes for each row, using cell A1, A2, A3 as they go down the column...)
In cell D1, you can place this formula to get the sum of all odd rows:
=SUM(B1:B100)
In cell E1, you can place this formula to get the sum of all even rows:
=SUM(C1:C100)
2007-01-03 08:03:01
·
answer #5
·
answered by Monkeyman 3
·
0⤊
0⤋
I'd love to help, but I don't understand the question. Are you trying to calculate the sum of all the even values and calculate the sum of all the odd values?
2007-01-03 07:48:47
·
answer #6
·
answered by trigam41 4
·
0⤊
0⤋
In the desired cell, put the formula: =SUM(A1,A3,A5,A7,A9,A11...A99) for the odd numbered cells.
=SUM(A2,A4,A6,A8,A10...A100) for the even numbered cells.
2007-01-03 07:55:26
·
answer #7
·
answered by rod 6
·
0⤊
0⤋