View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Gary''s Student Gary''s Student is offline
external usenet poster
 
Posts: 11,058
Default Spell Check Entire WorkBook

Try this small macro:

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

--
Gary''s Student - gsnu200773


"Missy" wrote:

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.