+ Reply to Thread
Results 1 to 2 of 2

spell check in an Excel protected sheet

Hybrid View

Guest spell check in an Excel... 02-16-2005, 03:20 PM
Guest Re: spell check in an Excel... 02-16-2005, 04:37 PM
  1. #1
    Cats
    Guest

    spell check in an Excel protected sheet

    Office 2003 - Excel
    I am trying to make it possible for personnel to spell check information
    they insert, in a unlocked cell in a password protected worksheet. I have
    tried everything I can find in all HELP areas, but cannot find anything

  2. #2
    Gord Dibben
    Guest

    Re: spell check in an Excel protected sheet

    Cats

    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, 16 Feb 2005 11:05:06 -0800, "Cats" <Cats@discussions.microsoft.com>
    wrote:

    >Office 2003 - Excel
    >I am trying to make it possible for personnel to spell check information
    >they insert, in a unlocked cell in a password protected worksheet. I have
    >tried everything I can find in all HELP areas, but cannot find anything



+ 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