View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Gary''s Student Gary''s Student is offline
external usenet poster
 
Posts: 11,058
Default AUTOMATIC SPELL CHECK

Put the following macro in the worksheet code area:

Private Sub Worksheet_Change(ByVal Target As Range)
Target.CheckSpelling SpellLang:=1033
End Sub

It will check each cell after you have entered material in it.

REMEMBER: the worksheet code area, not a standard module
--
Gary''s Student - gsnu200765


"RENEE" wrote:

Am using Excel 2003 - is it possible for it to automatically spell check as I
type. I know I can check after everything is finished, but would like to see
errors as I work. I am not talking about auto correct, which I understand,
but just general spell checking.