auto spell check

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

We need excel to run spell check automatically before the workbook can be saved. Any ideas how we can accomplish this?
 
-----Original Message-----
We need excel to run spell check automatically before the
workbook can be saved. Any ideas how we can accomplish
this?
.
Create a Macro that fires off before close:

Private Sub Workbook_BeforeClose(Cancel As Boolean)

Cells.CheckSpelling CustomDictionary:="CUSTOM.DIC",
IgnoreUppercase:=False _
, AlwaysSuggest:=True, SpellLang:=1033

End Sub

The macro should be contained in the "This Workbook"
Object.

Allan Koodray
 
Back
Top