Drag formula across one cell to right

hanz753

Board Regular
Joined
Aug 9, 2017
Messages
53
Hello, I have recorded the macro below and assigned it to a button in Excel.

Range("H22").Select
Selection.AutoFill Destination:=Range("H22:I22"), Type:=xlFillDefault
Range("H22:I22").Select

I now need it to continue to the next cell( Copy formula in Cell H22 and paste in J22)

Can this be done in VBA?

Thanks
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Replace your code with :

Range("H22").Copy Range("I22:J22")
 
Upvote 0
Thank you for the idea.

What I did was, I simply changed the range in the second line of my code to ("I22:J22").

And it works perfectly!

Thank You!
 
Upvote 0

Forum statistics

Threads
1,223,534
Messages
6,172,888
Members
452,486
Latest member
standw01

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