VBA The PasteSpecial method of the Range class failed

Palucci

Banned user
Joined
Sep 15, 2021
Messages
138
Office Version
  1. 365
Platform
  1. Windows
Guys !

I have first time this bug about The PasteSpecial method of the Range class failed. From this B17:F27 vintage_agr-tabele


I have to paste in I67 blank4 i have bug here:
Rich (BB code):
wbMe.Sheets("blank4").Range("I67").PasteSpecial Paste:=xlPasteValue

Rich (BB code):
wb.Sheets("vintage_agr-tabele").Range("B17:F27").Copy
wbMe.Sheets("blank4").Range("I67").PasteSpecial Paste:=xlPasteValue

How to resolve it ?
 

Attachments

  • 1632307724939.png
    1632307724939.png
    10 KB · Views: 8
  • 1632307773454.png
    1632307773454.png
    32.9 KB · Views: 7

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
It should be
VBA Code:
xlPasteValues
you are missing the final s
 
Upvote 0
Solution

Forum statistics

Threads
1,214,812
Messages
6,121,702
Members
449,048
Latest member
81jamesacct

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