Formula autofill to cells below – formula arguments are cell areas in different columns

  • Thread starter Thread starter pv854624
  • Start date Start date
P

pv854624

Hello,

I have a sheet that contains a sum function in cell B1 and I would like to autofill B2:B6. However, the addends of the sums for each of these cells are in different columns, namely, in cells E2:E4, F2:F4, G2:G4 etc. How do I accomplish this? Using absolute references for rows, columns, or both doesn't work.

This picture should illustrate the problem:
http://www3.picturepush.com/photo/a/9300441/img/9300441.gif


Pekka
 
hi Pekka,

Am Fri, 7 Sep 2012 13:02:37 -0700 (PDT) schrieb (e-mail address removed):
I have a sheet that contains a sum function in cell B1 and I would like to autofill B2:B6. However, the addends of the sums for each of these cells are in different columns, namely, in cells E2:E4, F2:F4, G2:G4 etc. How do I accomplish this? Using absolute references for rows, columns, or both doesn't work.

This picture should illustrate the problem:
http://www3.picturepush.com/photo/a/9300441/img/9300441.gif

try:
=SUM(OFFSET($E$2,,ROW(B1)-1,3))


Regards
Claus Busch
 
Back
Top