Macro to drag formulae down

BlueBarratt

New Member
Joined
Jul 29, 2015
Messages
4
Hi all,

Having some trouble writing a macro to fill down formulae across several columns.

My macro looks like this:
Sheets("Arcade").Rows("37:37").Select
Selection.Insert Shift:=xlDown
Sheets("Arcade").Range("A36:T36").Select
Selection.AutoFill Destination:=Range("A36:T38"), Type:=xlFillDefault
Range("A36:T38").Select

I've recorded myself doing the exact thing I want the macro to do, and it returns the same code, so I'm a bit lost as to why it's not working. The error comes about on the penultimate line.

Thanks in advance for any help.
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Welcome to the board. Try this instead of above:
Code:
With Sheets("Arcade")
    .rows(37).Insert shift:=xlDown
    .Range("A36:T38").FillDown
End With
 
Upvote 0
Welcome to the board. Try this instead of above:
Code:
With Sheets("Arcade")
    .rows(37).Insert shift:=xlDown
    .Range("A36:T38").FillDown
End With

Many thanks mate, this worked an absolute charm.

I did figure out a work-around involving copying the row above and pasting below, but your way is much more elegant!
 
Upvote 0

Forum statistics

Threads
1,215,045
Messages
6,122,830
Members
449,096
Latest member
Erald

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