copying formulas

G

Guest

I am trying to copy formulas in a spreadsheet that pulls the data from every
4th column in another spreadsheet in a consistent pattern (eg. b6, f6, j6,
n6). When I try to copy the pattern to the next 4 cells in the row,
anticipating r6, v6, etc. instead it repeats as f6, j6, n6, r6. How do I
correct this?
 
F

Frank Kabel

Hi
in the first cell (lets assume A1) enter
=OFFSET('other_sheet'!$B$6,0,(COLUMN()-1)*4)
and copy to the right
 
G

Guest

Thank you. The OFFSET command identifies the correct cell. However, when I
copy to the right, the pattern doesn't repeat. It always remains anchored to
the first cell (eg. A1), so all subsequent results repeat the same value. I
tried removing the $ before the column, but it still doesn't work. I need the
copied formula to move the anchor point over by 4 columns as the new
reference. How do I do that?
 
F

Frank Kabel

Hi
this is done automatically by the thirdparameter of this formula:
(COLUMN()-1)*4

So $A$1 is correct. The third parameter shifts the cell offset
 
G

Guest

Thanks again. However, I'm still not getting there. Here is exactly what I am
typing:

=OFFSET('Plan Summary 03 - Present'!$A$6,0,COLUMN($A$6)-1)*4

What have I misinterpreted?
 

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