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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top