Work

Add Every Other Cell In A Column In Excel

Flag
2:00PM September 28, 2009 | Angus Kidman

ExcelRowsWant to find the total of every other cell in a column in Excel? You can manually select those cells by holding down Control and clicking, but a little formula magic can get the job done much faster.

Microsoft’s Excel Team Blog explains how you can use a little basic mathematics and Excel’s array features to add up every second cell. The process is a tad fiddly — you need to use a special method of entering the formula — but still much less error-prone than attempting manual selection for more than a handful of entries. Hit the post for full instructions. For more Excel tricks, try calculating the week number or designing floor plans in Excel.

Adding Every Other Cell in a Column [Microsoft Excel Team Blog]


Comments

  • venkat

    September 28, 2009 at 2:47 PM

    data is from A1 to a9

    formula is

    =SUM(IF(MOD(ROW(A1:A9),2)=1,A1:A9,”"))

Post Your Comments