简体   繁体   中英

copy and paste special with VBA in excel

I wrote this code and it keeps giving me an error that the size of the copy area and the paste area are not the same. but if I just use the copy-paste method, it works perfectly. could you pls help me out.

Sub copy()
eRow = Sheet5.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Row
Sheet4.Range("a4", "d23").copy
Sheet5.Cells(eRow, 1).PasteSpecial (xlPasteValues)
End Sub

Move values one by one with a value transfer. As implied in the name, a value transfer does not carry over formats.


This just copies the 2 individual cells A4 & D23

Sub copy_me()

Dim ws As Worksheet: Set ws = ThisWorkbook.Sheets("Sheet1")
Dim lr As Long

lr = ws.Range("A" & ws.Rows.Count).End(xlUp).Offset(1).Row

ws.Range("A" & lr).Value = ws.Range("A4").Value
ws.Range("D" & lr).Value = ws.Range("D23").Value

End Sub

If you meant to grab the entire range A4:D23 then

ws.Range("A4:D23").Copy
ws.Range("A" & lr).PasteSpecial xlPasteValues

OR

ws.Range("A" & lr).Resize(20, 4).Value = ws.Range("A4:D23").Value

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM