XL98: Problems with Arguments of PasteSpecial Method (183135)
The information in this article applies to:
- Microsoft Excel 98 Macintosh Edition
This article was previously published under Q183135 SYMPTOMS
In Microsoft Excel 98 Macintosh Edition, if you write a Visual Basic for
Applications macro that uses the PasteSpecial method, the macro may not
work correctly if it attempts to do either of the following:
- Use Paste Special to paste validation
- Use Paste Special to paste all information except borders
For example, when the macro attempts to paste information except borders,
nothing is pasted.
Note that the same macro works correctly in earlier versions of Microsoft
Excel.
CAUSE
This problem occurs because the Paste argument used by the PasteSpecial
method uses the wrong value; it uses the value 6 instead of the value 7.
Because the value 6 is used, the xlPasteAllExceptBorders constant
incorrectly causes validation formatting to be pasted.
To paste information except borders, the xlPasteAllExceptBorders constant
should use a value of 7. When the value is 6, the xlPasteAllExceptBorders
constant causes the PasteSpecial method to paste validation formatting when
you run the macro.
There is no constant that causes all information except borders to be
pasted.
NOTE: There is no xlPasteValidation constant, either in Visual Basic or
mentioned in the Help topic, for the PasteSpecial method.
WORKAROUNDMicrosoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements.
To work around this problem, use the Paste argument and set it to the
correct value. To do this, modify the macro so that it resembles one of the
following examples.
Paste Validation Only
To paste only validation formatting, change the value of the Paste argument
to 6, as in the following example:
Selection.PasteSpecial Paste:=6, Operation:=xlNone
To avoid confusion, Microsoft recommends that you use this method instead
of using the xlPasteAllExceptBorders constant because it does not perform
the correct operation.
To Paste All Information Except Borders
If you want to paste all copied information except borders, change the
value of the Paste argument to 7, as in the following example:
Selection.PasteSpecial Paste:=7, Operation:=xlNone
STATUS
Microsoft has confirmed this to be a problem in the Microsoft products
listed at the beginning of this article.
Modification Type: | Major | Last Reviewed: | 6/17/2005 |
---|
Keywords: | kbdocerr kbprb kbProgramming KB183135 |
---|
|