VBA Insert Row & Copy/Insert Specific Range From Row Above

jwmi01

New Member
Joined
Jul 20, 2023
Messages
9
Office Version
  1. 2021
Platform
  1. Windows
Currently using this simple "insert row and fill down" macro. I'd like to limit the fill to rows A-K of the row being copied down.

Any help is appreciated, thanks!

VBA Code:
Sub InsertCopyOfPart()

Application.ScreenUpdating = True
Dim r As Long
r = ActiveCell.Row
  
  
   With ActiveCell
      .Offset(1).EntireRow.Insert
      Cells(.Row, 1).Resize(2, 13).FillDown
            
   End With

Application.ScreenUpdating = True
End Sub
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
replace this line:
VBA Code:
 Cells(.Row, 1).Resize(2, 13).FillDown
with this:
VBA Code:
 Cells(.Row, 1).Resize(2, 11).FillDown
 
Upvote 0
Solution

Forum statistics

Threads
1,215,139
Messages
6,123,262
Members
449,093
Latest member
Vincent Khandagale

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