How to appy the formular with different cell parameters~kindly hel

J

JL

I am working on a worksheet which require me to do this:
For cell A80, it is equal to Sum of A1 to A10
For cell A81, it is equal to Sum of A11 to A20
For cell A82, it is equal to Sum of A21 to A30
and so on......

Is there a easy way to do it instead of mannually change the formular one by
one?????
 
N

Niek Otten

=SUM(INDIRECT("a"&INT(ROW()/8)-9+MOD(ROW(),8)&":A"&INT(ROW()/8)+MOD(ROW(),8)))
 
J

joeu2004

JL said:
I am working on a worksheet which require me to do this:
For cell A80, it is equal to Sum of A1 to A10
For cell A81, it is equal to Sum of A11 to A20
For cell A82, it is equal to Sum of A21 to A30
and so on......
Is there a easy way to do it instead of mannually change
the formular one by one?????

Put the following into A80 and copy down:

=SUM(OFFSET($A$1:$A$10,10*(ROW()-ROW($A$80)),0))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top