chip pearson's website has a downloadble file for this scenario, file i
called sumevery.xls.
following is a excerpt from it:
*****
Use these formulas when the data DOES start in row 1.
To start in row N, and sum rows N, 2N, 3N, etc, use
=SUM(IF(MOD(ROW($A$1:$A$20),$D$1)=0,$A$1:$A$20,0))
63
To start in row 1, and sum rows 1, 1+N, 1+(2N),etc use
=SUM(IF(MOD(ROW($A$1:$A$20)-1,$D$1)=0,$A$1:$A$20,0))
70
*****
Use these formulas when the data does NOT start in row 1.
To start in row N (of the range), and sum rows N, 2N, 3N, etc
use
=SUM(IF(MOD(ROW($B$3:$B$22)-ROW($B$3)+1,$D$1)=0,$B$3:B$20,0))
63
To start in row 1 (of the range), and sum rows 1, 1+N, 1+(2N),et
use
=SUM(IF(MOD(ROW($B$3:$B$22)-ROW($B$3),$D$1)=0,$B$3:B$22,0))
70
****