Spell Checking an Excel Form

G

Guest

We have an Excel form that our users want to be able to spell check, but
cannot since the form is protected. I got a macro from you folks that does a
great job spell checking protected Word forms and thought you might be able
to point me to something similar in Excel.

Thanks.

Ken K.
 
P

Paul B

akkrug, some thing like this,

Sub Spell_Check()

'spell check a protected sheet, change password to yours

ActiveSheet.Unprotect password:="123"

Cells.CheckSpelling CustomDictionary:="CUSTOM.DIC",
IgnoreUppercase:=False _

, AlwaysSuggest:=True

ActiveSheet.Protect password:="123"

End Sub
--
Paul B
Always backup your data before trying something new
Please post any response to the newsgroups so others can benefit from it
Feedback on answers is always appreciated!
Using Excel 2002 & 2003
 

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

Top