SOLVED

Sum every second cell in a column

Copper Contributor

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

3 Replies
best response confirmed by Stev05163 (Copper Contributor)
Solution
For sum of even-numbered rows, you may use:
=SUMPRODUCT(ISEVEN(ROW(A:A))*A:A)
For odd, just change ISEVEN to ISODD.

Many Thanks Twifoo,

That worked a treat!

You're very much welcome!
1 best response

Accepted Solutions
best response confirmed by Stev05163 (Copper Contributor)
Solution
For sum of even-numbered rows, you may use:
=SUMPRODUCT(ISEVEN(ROW(A:A))*A:A)
For odd, just change ISEVEN to ISODD.

View solution in original post