Spell Check Entire WorkBook

M

Missy

I'm using Excel 2003 - how can I spell check an entire workbook with multiple
worksheets? Now I have to run a spell check on each worksheet - switching to
the next sheet after each check.
 
G

Gary''s Student

Try this small macro:

Sub Macro1()
For Each w In Worksheets
w.Cells.CheckSpelling SpellLang:=1033
Next
End Sub
 
Top