We can use VBA to Copy a Range to another location or range. Range.Copy method will copy and it will save the copied data in Clipboard then you can select any range and paste. You can also specify the destination range while copying a range.
VBA to Copy Range in Excel – Syntax
Here is the syntax to copy a range using VBA. Here, Destination is the range which you want to be copied. This is optional, you are not providing the destination range, this will copy to the Clipboard.
Range(“YourRange”).Copy(
[Destination])VBA to Copy Range in Excel – Examples
Here is the simple example to copy a range. In this example , we are copying Range “A2:D10” to the Clipboard and then Pasting in the Range “E2”.
Sub Copy_Range_To_Clipboard() Range("A2:D10").Copy 'This will copy the Range "A2:D10" data into Clipboard 'Now you can select any range and paste there Range("E2").Select ActiveSheet.Paste End SubVBA to Copy Range to Destination in Excel – Example
Here is the another example to copy a range to specific range. In this example , we are copying Range “A2:D10” and pasting at Range “E2”.
Sub Copy_Range_To_Destination_Range() Range("A2:D10").Copy Range("E2") 'Or you can write as Range("A2:D10").Copy Destination:=Range("E2") End SubVBA to Copy Range in Excel – Execution Instructions
You can follow the below steps to execute the macro for copying a range using VBA.
- Open an Excel Workbook from your start menu or type Excel in your run command
- Enter some data in any cells in range “A2:D10″ to test this macro.
- Press Alt+F11 to Open VBA Editor or you can go to Developer Tab from Excel Ribbon and click on the Visual Basic Command to launch the VBA Editor
- Insert a Module from Insert Menu of VBA
- Copy the above code (for copying a range using VBA) and Paste in the code window(VBA Editor)
- Save the file as Macro Enabled Workbook (i.e; .xlsm file format)
- Press ‘F5′ to run it or Keep Pressing ‘F8′ to debug the code line by line.
Now you can observe that the Range A2:D10 is copied to specific range. This will copy the range including its formats and other elements in that particular range. To copy the specific elements, see the examples on PaseSpecial.
How do I copy a local 2 dimensional array of data to spreadsheet?
VBA code example
Dim MyData(0 To 50, 0 To 200)
‘ code to fill MyData() with values
Range(MyData).Copy Range(“ULCorner”) ‘ULCorner” is a named cell in worksheet
Hi Gerald,
Here is the code for the above question.
Regards-Valli
How do I copy the contents of a range over without changing the formatting of the range that I am pasting to?
Example:
Starting a new reporting month. I want to retain info for the last 12 months, hence I want to remove the oldest month and all the data in its column and add a new month at the end of my range. However, when I “move” (by copy and pasting using a VBA command), I want to paste the values only, not the formatting.
How do I do this?