Knowledge Base

XL: How to Check Spelling for Worksheet Objects Only

Article ID: 142531

Article Last Modified on 10/11/2006


APPLIES TO


This article was previously published under Q142531

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 97 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. Click the Spelling button, or click Spelling on the Tools menu.

Using a Macro to Check Spelling

Microsoft 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.
  1. In a new module sheet, type the following code:
    Sub Check_Object_Spelling()
        ActiveSheet.DrawingObjects.CheckSpelling
    End Sub
    					
  2. Select the sheet that contains the objects whose spelling you want to check.
  3. On the Tools menu, click Macro. Select the Check_Object_Spelling macro, and then click Run.

REFERENCES

For more information about using the spelling tool in Microsoft Excel for Windows 95 version 7.0, click Answer Wizard on the Help menu, and type:

Check spelling


Additional query words: 5.00a 5.00c 7.00a XL98 XL97 XL7 XL5 checkspelling

Keywords: kbhowto kbdtacode KB142531