XL5: PasteSpecial Method (Range Object) Example Incorrect |
In Microsoft Excel 5.0, in Visual Basic Reference Help, the example for the PasteSpecial Method (Range Object), returns the following error message when you use it in a procedure:
NOTE: Page 486 of the Microsoft Press book "Microsoft Excel 5 Visual Basic for Applications Reference," contains the same incorrect example.Run-time Error 1004:
PasteSpecial method of Range class failed
This error occurs because the "add" argument in the PasteSpecial command is incorrect. The correct argument is "xlAdd."
When you use this example in a macro, replace the word "Add" in the PasteSpecial command with the word xlAdd, as in the following example:
Range("D1:D5").PasteSpecial operation:=xlAdd
Microsoft has confirmed this to be a problem in Microsoft Excel version 5.0. This problem has been corrected in Microsoft Excel version 5.0c.
Additional query words: 5.00a PasteSpecial failed
Keywords :
Version : WINDOWS:5.0
Platform : WINDOWS
Issue type :
Technology :
|
Last Reviewed: November 2, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |