Loading...
Loading...
Copies a range of cells and pastes it to a target location on the same sheet.
Sub CopyAndPaste()
Range("A1:B10").Copy
Range("D1").PasteSpecial Paste:=xlPasteValues
Application.CutCopyMode = False
End SubRELATED MACROS IN AUTOMATION & VBA