VBA code to copy data from one worksheet to another


 Sub CopyData()

   Sheets("Sheet1").Range("A1:B10").Copy _

      Destination:=Sheets("Sheet2").Range("A1")

End Sub


VBA code to copy data from one worksheet to another

Post a Comment

0 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.