Formula Addition Copy

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Example sheet 1
a1 to a1000 each has a different number:
sheet 2
cell a1 add sheet 1 a1 to a100
cell a2 add sheet 1 a101 to 200
Is there a way to copy formula into cell a3 without editing it.
 
one way:

Sheet2:
A1: =SUM(OFFSET(Sheet1!A$1,(ROW()-1)*100,0,100,1))

Copy down as necessary.
 
Put this in A2 and copy down:
=SUM(OFFSET(Sheet1!$A$1,100*(ROW()-1),0,100,1))
 
Hi, Thanks for help, however, i did not clearly post my problem
going to cell a3 sheet 2 need to copy formula making it additional 100 rows
201 to 300 can this be done
Thanks
Joe
 
I had a typo:

Put this in A1 and copy down:
=SUM(OFFSET(Sheet1!$A$1,100*(ROW()-1),0,100,1))

But try it, then post back with your results.
 
Ps. The typo was "put this in A2". It should be A1. The formula didn't
change.
 
HI , Thank you. This is exactly what was needed.
Joe

Dave Peterson said:
Ps. The typo was "put this in A2". It should be A1. The formula didn't
change.
 

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

Similar Threads


Back
Top