View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Paul B Paul B is offline
external usenet poster
 
Posts: 709
Default How do I enable the spellchecker in a protected worksheet?

Anne, you could assign this to a button, unprotect the sheet check the
spelling and then protect the sheet

Sub Spell_Check()
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

"Anne CFS" <Anne wrote in message
...
I need to protect the formulae in the workshee, but also allow the users

to
use the spellchecker. Protecting the sheet disables the spellchecker - how

do
I get round this. There is no 'EnableSpellchecker' method, so I'm stuck!!