QP School

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

You can paste copied data to a new location.

Example:

Sub ExamplePasting()
    Range("A1").Copy
    Range("B1").PasteSpecial xlPasteValues
End Sub