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
- Select the objects. To do this, click the first object, and then hold down SHIFT and click each additional object.
- 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. 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.
- On the Tools menu, point to Macro, and then click Visual Basic Editor (or press ALT+F11).
- On the Insert menu, click Module.
- In the module sheet, type the following code:
Sub Check_Object_Spelling()
ActiveSheet.DrawingObjects.CheckSpelling
End Sub
- On the File menu, click Close and Return to Microsoft Excel.
- Select the sheet that contains the objects whose spelling you want to check.
- On the Tools menu, click Macro. Click the Check_Object_Spelling macro, and then click Run.