Paste Special Method of Range Class Failed

krish42632

New Member
Joined
Sep 17, 2017
Messages
7
kindly solve this issue



my code is


Private Sub Button9_Click()


Sheets("sys").Range("A9142:A20000").Copy


Dim lastrow As Long
lastrow = Range("A9249:A20000").End(xlUp).Row


Sheets("Sheet1").Activate
Cells(lastrow + 1, 1).PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks:=False, Transpose:=False


End Sub
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Welcome to the MrExcel board!

Does adding the blue code resolve the error?

Sheets("Sheet1").Cells(lastrow + 1, 1).PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
 
Last edited:
Upvote 0
I have not been able to reproduce the error.

Is Button9 on a sheet (which sheet) or on a Userform?

Which sheet is this line of code supposed to be using to calculate lastrow
Code:
lastrow = Range("A9249:A20000").End(xlUp).Row

Have you posted the full code for Button9 or just an extract?
 
Upvote 0
With the setup you have described, I have not been able to re-produce the error so I am not sure what is wrong.
Are you able to post a copy (with any sensitive data removed or disguised) on a public file-share site (eg Dropbox) and post a link to it here? If so, make sure that the error still occurs in that copy of the file.
 
Upvote 0

Forum statistics

Threads
1,215,379
Messages
6,124,610
Members
449,174
Latest member
ExcelfromGermany

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top