XL2000: How to Check Spelling for Worksheet Objects Only

ID: Q213608


The information in this article applies to:
  • Microsoft Excel 2000


SUMMARY

In Microsoft Excel, you can check spelling for just the objects on a worksheet. You can do this manually or with Microsoft Visual Basic for Applications code.


MORE INFORMATION

NOTE: Although WordArt in Microsoft Office is an object, you can not check its spelling manually or with the sample code because of its graphical nature.

Checking Spelling Manually

  1. Select the objects. To do this, click the first object, and then hold down SHIFT and click each additional object.


  2. On the Tools menu, click Spelling.


Using a Macro to Check Spelling

Microsoft 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 a Microsoft Certified Solution Provider or the Microsoft fee-based consulting line at (800) 936-5200. For more information about Microsoft Certified Solution Providers, please see the following page on the World Wide Web:

http://www.microsoft.com/mcsp/
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.asp
  1. On the Tools menu, point to Macro, and then click Visual Basic Editor (or press ALT+F11).


  2. On the Insert menu, click Module.


  3. In the module sheet, type the following code:


  4. 
    Sub Check_Object_Spelling()
        ActiveSheet.DrawingObjects.CheckSpelling
    End Sub 
  5. On the File menu, click Close and Return to Microsoft Excel.


  6. Select the sheet that contains the objects whose spelling you want to check.


  7. On the Tools menu, click Macro. Click the Check_Object_Spelling macro, and then click Run.



REFERENCES

For more information about using the spelling tool in Excel, click Microsoft Excel Help on the Help menu, type Check Spelling in the Office Assistant or the Answer Wizard, and then click Search to view the topics returned.

Additional query words: xl2000 checkspelling

Keywords : kbdta kbdtacode OffVBA PgmHowto KbVBA
Version : WINDOWS:2000
Platform : WINDOWS
Issue type : kbhowto


Last Reviewed: October 25, 1999
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.