Closed Thread
Results 1 to 2 of 2

Spell check in a protected sheet

Hybrid View

  1. #1
    Jae
    Guest

    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.

  2. #2
    Gord Dibben
    Guest

    Re: 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 <Jae@discussions.microsoft.com> 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

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1