I would like to copy the whole contents of a row into the next row, when it meets some criteria. So if I'm in row 3 i want that row 4 would have the exact contents of row 3.
The problem is that row 4 already has a content of its own. How can i shift it down and then copy my desired contents?
I have only tried the Entirerow.Copy
and paste special method but that doesn't seem to be working.
Worksheets("Sheet 1").Range("A2").EntireRow.Copy
Worksheets("Sheet 1").Range("A3").PasteSpecial
Any tips?