View Single Post
  #2   Report Post  
Ron Coderre
 
Posts: n/a
Default


Try this:

=SUMPRODUCT(--(MOD(ROW($A$1:$A$18),2)=1),$A$1:$A$18)

That formula sums odd-row values in the range A1:A18.

To sum even-row values the formula is:
=SUMPRODUCT(--(MOD(ROW($A$1:$A$18),2)=0),$A$1:$A$18)

Adjust the ranges as necessary.

Does that help?

Ron


--
Ron Coderre
------------------------------------------------------------------------
Ron Coderre's Profile: http://www.excelforum.com/member.php...o&userid=21419
View this thread: http://www.excelforum.com/showthread...hreadid=395115