XL97: Error Running Macro To Modify Cell Comments

Last reviewed: February 12, 1998
Article ID: Q166141
The information in this article applies to:
  • Microsoft Excel 97 for Windows

SYMPTOMS

When you run a Visual Basic for Applications macro that modifies cell comments on a worksheet, you may receive the following error message:

   Run-time error '438':
   Object doesn't support this property or method

CAUSE

You may see this behavior if you record a macro that moves or resizes the cell Comment. The Macro Recorder does not record the selection of the Comment properly, which is necessary for modifying the size or position of the Comment on the worksheet.

WORKAROUND

To avoid this problem, add the following two lines of macro code before the line that reads "Selection.RangeShape..." (without quotation marks) in the recorded macro:

   Range(<cell reference>).Comment.Visible = True
   Range(<cell reference>).Comment.Shape.Select True

STATUS

Microsoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.

Keywords          : xlvbainfo kbcode kberrmsg kbprg
Version           : WINDOWS:97


================================================================================


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: February 12, 1998
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.