Spell Check w/ Protection

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

Guest

Does anyone know how you can enable spell checking for a protected worksheet?
 
Hi
you can't. You may record a macro which first unprotects the sheet, executes
spell checking and protects the sheet again
 
Thank You. Excellent suggestion that I think will do the job. Have a Happy
New Year.
 
Requires VBA to unprotect the sheet, do the spellcheck then reprotect the
sheet.

Similar to.......

Sub Spell_Check()
ActiveSheet.Unprotect Password:="justme"
Cells.CheckSpelling SpellLang:=1033
ActiveSheet.Protect Password:="justme", DrawingObjects:=True, _
Contents:=True, Scenarios:=True
End Sub

Gord Dibben Excel MVP
 

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