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

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
It is actually more straightforward than it looks, just break it down and work it piece by piece and it should make sense.

There are really just a few things you need to know first.
1. How the OFFSET function works. See: https://exceljet.net/excel-functions/excel-offset-function
2. Knowing that ROW() will return the row number from whatever cell that formula is located in.
3. Knowing that COLUMN() will return the current column number from whatever cell that formula is located in.

You can break out the formula and place it in various cells to see what it returns, i.e.
=(COLUMN()-30)+(ROW()-6)*14

And can break it down even further, if you like, i.e.
=(COLUMN()-30)
=
(ROW()-6)*14

Once you see all this, it should make more sense.
Post back if you still have any questions about it after trying this.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,402
Messages
6,119,299
Members
448,885
Latest member
LokiSonic

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