Spell Check Entire WorkBook

  • Thread starter Thread starter Missy
  • Start date Start date
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.
 
Try this small macro:

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