Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
Does anyone know how you can enable spell checking for a protected worksheet?
|
#2
![]() |
|||
|
|||
![]()
Hi
you can't. You may record a macro which first unprotects the sheet, executes spell checking and protects the sheet again -- Regards Frank Kabel Frankfurt, Germany Peter wrote: Does anyone know how you can enable spell checking for a protected worksheet? |
#3
![]() |
|||
|
|||
![]()
Thank You. Excellent suggestion that I think will do the job. Have a Happy
New Year. "Frank Kabel" wrote: Hi you can't. You may record a macro which first unprotects the sheet, executes spell checking and protects the sheet again -- Regards Frank Kabel Frankfurt, Germany Peter wrote: Does anyone know how you can enable spell checking for a protected worksheet? |
#4
![]() |
|||
|
|||
![]()
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 On Wed, 29 Dec 2004 12:33:05 -0800, "Peter" wrote: Thank You. Excellent suggestion that I think will do the job. Have a Happy New Year. "Frank Kabel" wrote: Hi you can't. You may record a macro which first unprotects the sheet, executes spell checking and protects the sheet again -- Regards Frank Kabel Frankfurt, Germany Peter wrote: Does anyone know how you can enable spell checking for a protected worksheet? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Seeking help for total worksheet protection | Excel Discussion (Misc queries) | |||
library check in and out | Excel Discussion (Misc queries) | |||
Using a Check Box as a control item | Excel Discussion (Misc queries) | |||
How may I remove Office 2003 DRM protection from DOC & XLS files? | Excel Discussion (Misc queries) | |||
Why does spelling check close Excel when checking spanish? | Excel Discussion (Misc queries) |