+ Reply to Thread
Results 1 to 3 of 3

Spell check

  1. #1
    Tonks
    Guest

    Spell check

    How do I set Excel so others can Spell check data in a protected sheet?

  2. #2
    Paul B
    Guest

    Re: Spell check

    Tonks, use a macro to unprotect the sheet, spell check, and then protect the
    sheet, like this, assign to a button on the sheet

    Sub Spell_Check()
    'spell check a protected sheet
    Const Password = "123" '**Change password here**
    ActiveSheet.Unprotect Password:=Password
    Cells.CheckSpelling CustomDictionary:="CUSTOM.DIC",
    IgnoreUppercase:=False _
    , AlwaysSuggest:=True
    ActiveSheet.Protect Password:=Password
    End Sub


    --
    Paul B
    Always backup your data before trying something new
    Please post any response to the newsgroups so others can benefit from it
    Feedback on answers is always appreciated!
    Using Excel 2002 & 2003

    "Tonks" <[email protected]> wrote in message
    news:[email protected]...
    > How do I set Excel so others can Spell check data in a protected sheet?




  3. #3
    Paul B
    Guest

    Re: Spell check

    word wrap may be a problem with the other one


    Sub Spell_Check()
    'spell check a protected sheet
    Const Password = "123" '**Change password here**
    ActiveSheet.Unprotect Password:=Password
    Cells.CheckSpelling CustomDictionary:= _
    "CUSTOM.DIC", IgnoreUppercase:=False _
    , AlwaysSuggest:=True
    ActiveSheet.Protect Password:=Password
    End Sub


    --
    Paul B
    Always backup your data before trying something new
    Please post any response to the newsgroups so others can benefit from it
    Feedback on answers is always appreciated!
    Using Excel 2002 & 2003

    "Paul B" <[email protected]> wrote in message
    news:%[email protected]...
    > Tonks, use a macro to unprotect the sheet, spell check, and then protect

    the
    > sheet, like this, assign to a button on the sheet
    >
    > Sub Spell_Check()
    > 'spell check a protected sheet
    > Const Password = "123" '**Change password here**
    > ActiveSheet.Unprotect Password:=Password
    > Cells.CheckSpelling CustomDictionary:="CUSTOM.DIC",
    > IgnoreUppercase:=False _
    > , AlwaysSuggest:=True
    > ActiveSheet.Protect Password:=Password
    > End Sub
    >
    >
    > --
    > Paul B
    > Always backup your data before trying something new
    > Please post any response to the newsgroups so others can benefit from it
    > Feedback on answers is always appreciated!
    > Using Excel 2002 & 2003
    >
    > "Tonks" <[email protected]> wrote in message
    > news:[email protected]...
    > > How do I set Excel so others can Spell check data in a protected sheet?

    >
    >




+ Reply to 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