QP School

Full Version: Copying with VBA
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Description:

You can copy data or cells from one location to another.

Example:

Sub ExampleCopying()
    Range("A1").Copy Destination:=Range("B1")
End Sub