20201007 0834
"www.excelhowto.com/macros/excel-vba-copy-and-paste-a-range/"
Sheets("Sheet1").Range("A1:D5").Copy Sheets("Sheet1").Range("A7:D11").PasteSpecial xlPasteFormulas
Note: To remove the animation around the copied cell add below code:
Application.CutCopyMode = False
1) xlpastevalues
2) target(destination) range's size does not need to be same as original range. Just targeting starting point(upper left corner) is enough.
...
'[PA] 업무자동화 > [XL]Excel & VBA' 카테고리의 다른 글
XL Date Time Formatting (0) | 2020.10.07 |
---|---|
XL Group Pivot Table (0) | 2020.10.07 |
XL Cells를 이용한 Range 선택 (0) | 2020.10.07 |
XL 엑셀 Code Snippet (0) | 2020.04.14 |
VBA 더블클릭하면 체크되게 (0) | 2020.04.11 |