I have this VBA code that copies all rows if a cell in a specific column is not empty to a different worksheet.
Here is my code:
With ws
For Each Cell In .Range("A2:A" & ws.Cells(.Rows.Count, "A").End(xlUp).Row)
If Not IsEmpty(ws.Cells(Cell.Row, "P")) Then
ws.Rows(Cell.Row).Copy Destination:=ws4.Rows(Cell.Row)
End If
Next Cell
End With
My question is how will I be able to paste it only starting on the 2nd row.
All types of help will be appreciated.