Insert Row and fill series from one column only

AJZLindsay93

New Member
Joined
Mar 12, 2019
Messages
3
Hi All,

I am trying to insert a button in my Excell sheet which adds a new row while filling the series in column A
E.g

F1
F2
F3
F4

I am struggling to write a code which can inset a row,copy the format (border lines) and fill the series in column A

I am a first time poster so apologies if I have not made myself clear enough, I thank you in advance for your help

Cheers
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
For things like this I usually record a macro to get the correct syntax and edit it to make it more general. This inserts a row at the row of the active cell and fills down column A.

Code:
Public Sub Insert_Row_Fill_ColumnA()

    With ActiveCell
        .EntireRow.Insert Shift:=xlDown, CopyOrigin:=xlFormatFromLeftOrAbove
        Cells(.Row - 2, "A").AutoFill Destination:=Range(Cells(.Row - 2, "A"), Cells(.Row - 1, "A")), Type:=xlFillDefault
    End With
    
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,324
Messages
6,124,249
Members
449,149
Latest member
mwdbActuary

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