i have a formula that copies a range down a column as many times as i need, however i need to insert a gap or offset between each paste . this does it but it removes my header row and i cant figure out how to get it to do the offset and paste without removing the header each time... help please
Sub PasteDownFormat()
Dim x As Long, i As Long
x = x = x = i
x = InputBox("How many times")
If x < 1 Then Exit Sub
With Range("B1:B1243")
For i = 1 To x
Cells(i * 1243 + 1, 2).Resize(.Rows.Count + 1, .Columns.Count).Offset(1, 0).Value = .Offset(1, 0).Value
Next
End With
End Sub
Sub PasteDownFormat()
Dim x As Long, i As Long
x = x = x = i
x = InputBox("How many times")
If x < 1 Then Exit Sub
With Range("B1:B1243")
For i = 1 To x
Cells(i * 1243 + 1, 2).Resize(.Rows.Count + 1, .Columns.Count).Offset(1, 0).Value = .Offset(1, 0).Value
Next
End With
End Sub