AutoFill Horizontally

Hanz77

Board Regular
Joined
Sep 21, 2006
Messages
87
I'm trying to write a VB Script that will autofill horizontally. For example, my data range is G2:Y2. I am trying to get the script to autofill a formula between cells G1 and Y1. But the script needs to be flexible enough to autofill through column AA if there is data between cells G2 and AA2.

I frequently use code that does this vertically, but I have not been able to do this horizontally. For reference, following is my code to do this vertically.

Range("B2").AutoFill Destination:=Range("B2:B" & Range("A65536").End(xlUp).Row)

Any assistance is appreciated.
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Try this:

Cells(1, 2).AutoFill Destination:=Range(Cells(1, 2), Cells(1, Cells(2, Columns.count).End(xlToLeft).column))
 
Upvote 0

Forum statistics

Threads
1,213,560
Messages
6,114,306
Members
448,564
Latest member
ED38

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