Using autofill on cells with formulas

jmancha

New Member
Joined
Feb 8, 2012
Messages
20
Is there a way. . .

I am in Cell A1 and the formula is =E1. I want to copy my formula down but instead of the row # changing from E1, E2, E3, etc. I need the COLUMN to change from E1, F1, G1, H1, etc.

Is this possible?
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
Hi
is this what you mean
Code:
=INDIRECT("E"&ROW())
Or

Code:
=INDIRECT(ADDRESS(ROW(),COLUMN()+4))
 
Last edited:
Upvote 0
How about
=INDIRECT("R1C"&ROW()+4,0)
 
Upvote 0
Have you try
=INDIRECT(ADDRESS(ROW(),COLUMN()+4))
 
Last edited:
Upvote 0
It is still copying down the row but keeping the column the same. So, It is giving me E1, E2, E2 when I need E1, F1, G1, etc. :(
 
Upvote 0
Have you tried the formula in post#3?
 
Upvote 0
I did try all of them (thank you all). After trying those got me thinking. . . INDEX($1:$1, 1, ROW(1:1))

This Worked!!
 
Upvote 0
Try this formula From Column(E) to Column(Z)
Code:
=INDIRECT(CHAR(69+ROWS($A$1:A1)-1)&1)
Or This One Column(E) to Any where
Code:
=OFFSET($A$1,,ROWS($A$1:A1)+3)
 
Last edited:
Upvote 0
I did try all of them (thank you all). After trying those got me thinking. . . INDEX($1:$1, 1, ROW(1:1))

This Worked!!

Glad you sorted it & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,212,932
Messages
6,110,748
Members
448,295
Latest member
Uzair Tahir Khan

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