I have copied the data from column A to F to another sheet sheet2.
this is my data sheet
the required macro is
Sub test()
Dim j As Integer, k As Integer, m As Integer
Worksheets("sheet2").Activate
j = Range("a1").End(xlDown).Row
For k = j To 2 Step -1
m = Cells(k, "c")
If m > 1 Then
Range(Cells(k + 1, "c"), Cells(k + m - 1, "c")).EntireRow.Insert
Range(Cells(k, "a"), Cells(k, "f")).Copy
Range(Cells(k, "A"), Cells(k + m - 1, "A")).PasteSpecial
End If
Next k
End Sub
if you want to use this for data in sheet1 modify the statement
Worksheets("sheet2").Activate
to
Worksheets("sheet1").Activate
Bookmarks