Forum Discussion

Stev05163's avatar
Stev05163
Copper Contributor
Mar 07, 2019
Solved

Sum every second cell in a column

Hi,

Is there an easy way to sum every second value/cell in a column?

I have a column with 1425 rows, and would line to sum every second cell, i.e. every even numbered cell, and also sum every odd numbered cell, except row 1

  • For sum of even-numbered rows, you may use:
    =SUMPRODUCT(ISEVEN(ROW(A:A))*A:A)
    For odd, just change ISEVEN to ISODD.

3 Replies

  • Twifoo's avatar
    Twifoo
    Silver Contributor
    For sum of even-numbered rows, you may use:
    =SUMPRODUCT(ISEVEN(ROW(A:A))*A:A)
    For odd, just change ISEVEN to ISODD.

Resources