Copy formula

deanl33069

Board Regular
Joined
May 2, 2019
Messages
120
I have a simple formula starting in column AD6-AQ6
in AD6 i have =aa06 AE6 =aa07 AF6 =aa08 ect
it stops in cell AQ6 then drops down to AD7 over to AQ7 then down to AD8-AQ8
when i copy cell AD6 and choose the rest of the cells (ae6-aq320) the formula changes from AA to AB
how can i keep it all AA and not change to AB or AC ect
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Hi,

In cell AD6 you could have following formula:

Code:
=OFFSET($AA$6,COLUMN()-30,0)

which can then be copied from AD6 till AQ6

Hope this will help
 
Upvote 0
Which one didn't work, you've been offered two solutions ?

And in what way exactly did it not work ?
 
Upvote 0
I think Gerald missed the first part of your question, and didn't notice that you are wanting to copy the formula across the row, but you actually want the column piece to increment. His solution shows you how to lock down the column reference all right, but won't increment the row part.

James formula will do exactly what you want for the first row.

However, I am not sure what you want the formula to look like in the second row. What formula do you expect to see in AD7?
 
Last edited:
Upvote 0
If the formula in AD7 should be pulling from AA20, then try this modication to James's formula:
Code:
=OFFSET($AA$6,(COLUMN()-30)[COLOR=#ff0000]+(ROW()-6)*14[/COLOR],0)
 
Upvote 0

Forum statistics

Threads
1,213,535
Messages
6,114,192
Members
448,554
Latest member
Gleisner2

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top