Sheet1.Range("B" & i + 1).Copy Sheet2.Range("B" & (cellsh2 + 3)).value
This above does not work. "Copy method of Range class failed". Why? What is proper syntax suppose to be?
Thanks.
Sheet1.Range("B" & i + 1).Copy Sheet2.Range("B" & (cellsh2 + 3)).value
This above does not work. "Copy method of Range class failed". Why? What is proper syntax suppose to be?
Thanks.
![]()
Sheets("sheet3").Range("A1:A3").Copy Destination:=Sheets("sheet2").Range("A1:A3)
An error
![]()
Sheets("sheet3").Range("A1:A3").Copy Destination:=Sheets("sheet2").Range("A1:A3)
Why don't you record your action?
![]()
Sheets("sheet3").Range("A1:A3").Copy Sheets("sheet2").Range("A1").PasteSpecial xlValues
copy and past special should be on separate lines (Should not on a single line) , otherwise, you get an error.![]()
Sheets("sheet3").Range("A1:A3").Copy Sheets("sheet2").Range("A1").PasteSpecial xlValues
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks