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!
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