gheyman
Well-known Member
- Joined
- Nov 14, 2005
- Messages
- 2,347
- Office Version
- 365
- Platform
- Windows
I have this code that seemed to be working in the past, but now the users are getting an error message. if they are copying from another Excel workbook it works but if they are copying from any other source (like Notepad) they get an error
Run-Time error '1004':
PasteSpecial Method of Range class failed.
Thanks for the help
Run-Time error '1004':
PasteSpecial Method of Range class failed.
Code:
Sub PastePropVersion()
'PasteButton
Sheets("ProPricer Info").Range("D12").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
End Sub
Thanks for the help