The Copy and Paste methods : Range Copy Cut Paste « Excel « VBA / Excel / Access / Word
- VBA / Excel / Access / Word
- Excel
- Range Copy Cut Paste
The Copy and Paste methods
Sub CopyRange()
range("A1:A12").Select
Selection.Copy
range("C1").Select
ActiveSheet.Paste
End Sub
Related examples in the same category