ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Spell check in a protected sheet (https://www.excelbanter.com/excel-discussion-misc-queries/85889-spell-check-protected-sheet.html)

Jae

Spell check in a protected sheet
 
I built a form which includes numerous check boxes and text boxes. Due to
the sensitivity of the forumals, I have protected the sheet. Unfortunately,
my end users are unable to access the spell check function as a result.

Is there any way to protect the worksheet without disabling the spell check
feature in text boxes? Any help you guys can provide would be appreciated.

Thanks in advance.

Gord Dibben

Spell check in a protected sheet
 
You can use this macro to unprotect, run the spellcheck, then re-protect the
sheet.


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 Fri, 28 Apr 2006 11:13:03 -0700, Jae wrote:

I built a form which includes numerous check boxes and text boxes. Due to
the sensitivity of the forumals, I have protected the sheet. Unfortunately,
my end users are unable to access the spell check function as a result.

Is there any way to protect the worksheet without disabling the spell check
feature in text boxes? Any help you guys can provide would be appreciated.

Thanks in advance.


Gord Dibben MS Excel MVP


All times are GMT +1. The time now is 09:06 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com