=INT(ROWS($A$1:A1)/12)+1
helloHello Dave,
Not sure if you are looking to calculate the average of every 12th value in your range, or calculate the average for cells 1-12, then 13-24, etc.
If the former, you could try something like:
=AVERAGE(IF(MOD(ROW(A1:A15), 12)=0, A1:A15))
If the latter, you could try something like:
=IF(MOD(ROW(),12)=0,AVERAGE(A1:A12),0)
copy down to all of the rows.
Cheers,
Sajan.