I have a macro to copy data from Column P on sheet2 to Column A on Sheet3
I need code that will insert 6 rows between each item in Col A on Sheet3.
I tried to write code to do this, but cannot get it to work
It would be appreciated if someone could kindly provide me with the code
I need code that will insert 6 rows between each item in Col A on Sheet3.
I tried to write code to do this, but cannot get it to work
Code:
Sub Insert6Rows()
Dim LR As Long
LR = Cells(Rows.Count, "A").End(xlUp).Row
With Range("A1:A" & LR)
.EntireRow.Offset(6).Insert
End With
End Sub
It would be appreciated if someone could kindly provide me with the code