Stuck again!
How do I go about repeating the below with range ("D5") to destination ("C6") as well as keeping the below.
Private Sub CommandButton1_Click()
With Range("d4")
.Copy Destination:=Sheets("Sheet1").Range("b6")
.ClearContents
End With
End Sub
How do I go about repeating the below with range ("D5") to destination ("C6") as well as keeping the below.
Private Sub CommandButton1_Click()
With Range("d4")
.Copy Destination:=Sheets("Sheet1").Range("b6")
.ClearContents
End With
End Sub