Copy formula with row automatically modified not column

  • Thread starter Thread starter Paul
  • Start date Start date
P

Paul

Hi,

I am trying to figure out a means to copy a formula across multiple columns
so that the row value increments automatically but not the column value. For
example:

The first cell, A1, has a formula of: =Sheet1!K110
After copy/paste, Cell B1 should have: =Sheet1!K114
After copy/paste, Cell C1 should have: =Sheet1!K118
After copy/paste, Cell B1 should have: =Sheet1!K122

The sheet I am working on has probably 200 such cells so being able to do
this via copy/paste would be ideal compared to editing each cell one-by-one.

Thank you for your help.

PS
 
Try this:

=INDEX(Sheet1!$K110:$K300,COLUMNS($A1:A1)*4-3)

Copy across as needed. Adjust the end of range: $K300 as needed.
 
Hi Biff,

Thanks alot, this worked great!

PS


T. Valko said:
Try this:

=INDEX(Sheet1!$K110:$K300,COLUMNS($A1:A1)*4-3)

Copy across as needed. Adjust the end of range: $K300 as needed.
 
please help

same case but diff row
for example :


The cell Sheet2! B32, has a formula of: =Sheet1!C9
After copy/paste, Cell Sheet2!B33 should have: =Sheet1!C47
After copy/paste, Cell Sheet2!B34 should have: =Sheet1!C85
After copy/paste, Cell Sheet2!B35 should have: =Sheet1!C123

Your help will be much appreciated.
 
Back
Top