The information in this article applies to:
SYMPTOMSIn Microsoft Excel 97, if you run a Visual Basic for Applications macro that uses the PasteSpecial method, you may find that the wrong worksheet becomes activated. This may cause problems if your macro assumes that a particular sheet is still active. CAUSE
This problem occurs because, in Microsoft Excel 97, the PasteSpecial method
activates the sheet into which you are pasting information (the "target
sheet"). In earlier versions of Microsoft Excel, the PasteSpecial method
does not activate the target sheet.
WORKAROUNDMicrosoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals 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 needs. If you have limited programming experience, you may want to contact the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web: http://www.microsoft.com/support/supportnet/overview/overview.aspIf you need your Visual Basic macro to copy information from one sheet, PasteSpecial the information into another sheet, and keep the original sheet active, you will need to add two lines of code to the macro. These lines of code keep track of the original sheet and reactivate it after the PasteSpecial method is complete. For example, if your original macro looks like this
you will need to add two lines to the macro:
The modified code will work in all versions of Microsoft Excel, including
Microsoft Excel 97.
STATUSMicrosoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article. This problem no longer occurs in Microsoft Excel 2000. MORE INFORMATIONIn Microsoft Excel, you can use the PasteSpecial method in a Visual Basic macro when you want to paste copied information in a certain way. For example, if you copy a range of cells that contains formulas, and then you want to paste just the results of the formulas, you could use a line of code similar to the following:
You can even paste information into a different sheet or into a sheet in
another workbook, by adding a reference to the sheet and/or workbook to the
line of code. For example:
If you do this in Microsoft Excel 97, the target sheet (in this case,
[Book2]Sheet3) will be activated. This may cause problems if your macro
assumes that the original sheet is still active.
If this change in behavior causes problems, use the information in the Workaround section to force your macro to reactivate the original sheet. Additional query words: 8.00 97 XL97
Keywords : kbprg kbdta KbVBA xlvbmigrate |
Last Reviewed: November 9, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |