How can I have the code below move the Copy Destination to Columns C and D if the destination Columns A and B have data in them? And if there is data in Columns C and D, copy to E and F, and so on?
Public Sub My_Copy()
Sheets("Sheet2").Columns("A:B").Copy Destination:=Sheets("Sheet1").Range("A:B")
End Sub
Public Sub My_Copy()
Sheets("Sheet2").Columns("A:B").Copy Destination:=Sheets("Sheet1").Range("A:B")
End Sub