Macro to AutoFill Formulas in a Specific Range

Michael151

Board Regular
Joined
Sep 20, 2010
Messages
247
Hello all,

Just need a little help with a macro that will autofill a formula to the end of another column. All the formulas in my worksheet are contained across row 8. I need the macro to autofill (copy down) each formula down the column until the end of text in column A. Column A could have as little as one row of text or thousands.

The code would be something like:

Range (“some number 8”).Select
Selection.AutoFill Destination: last row of text in column A

Any help is most appreciated – thank you!
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Code is based on formulae in row 8. I wasn't sure what columns they were in so you can adjust the "B8:H" section as needed.

Code:
Sub LstRow()
    Dim LR As Long
    Range("A8").Select
    ActiveCell.End(xlDown).Select
    LR = ActiveCell.Row

    Range("B8:H" & LR).Select
    Selection.FillDown
End Sub
 
Upvote 0

Forum statistics

Threads
1,224,613
Messages
6,179,904
Members
452,948
Latest member
Dupuhini

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