Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default How can I activate spell check in a protected sheet


  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
jaf jaf is offline
external usenet poster
 
Posts: 300
Default How can I activate spell check in a protected sheet

You can't.
You can't without unprotecting the sheet.
You can write a macro that will unprotect the sheet, do the spell check,
protect the sheet.

If users are going to run the macro you may want to prevent them from
breaking out of the macro.

John



"CKBW" wrote in message
...


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default How can I activate spell check in a protected sheet

Any suggestions on how

"jaf" wrote:

You can't.
You can't without unprotecting the sheet.
You can write a macro that will unprotect the sheet, do the spell check,
protect the sheet.

If users are going to run the macro you may want to prevent them from
breaking out of the macro.

John



"CKBW" wrote in message
...



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default How can I activate spell check in a protected sheet

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

Unprotects the sheet, does the spellcheck then reprotects the sheet.

"justme" can be changed to your password.


Gord Dibben MS Excel MVP

On Thu, 3 Jul 2008 15:05:01 -0700, CKBW wrote:


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Spell Check function on a protected sheet Mark Excel Worksheet Functions 1 July 13th 07 09:14 AM
Spell check protected sheet Suzanne Excel Discussion (Misc queries) 0 May 30th 07 05:52 PM
Protected sheet spell check Liz Excel Discussion (Misc queries) 0 May 11th 06 05:05 PM
Spell check in a protected sheet Jae Excel Discussion (Misc queries) 1 April 28th 06 08:48 PM
spell check in an Excel protected sheet Cats Excel Discussion (Misc queries) 1 February 16th 05 08:32 PM


All times are GMT +1. The time now is 02:00 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"