Re: Spellcheck plus Locking
- From: Gord Dibben <gorddibbATshawDOTca>
- Date: Wed, 08 Aug 2007 15:33:31 -0700
cells.checkspelling will check cells and cell notes(comments)
As far as specifying a dictionary goes, if the acronyms are in your CUSTOM.DIC
they will not be flagged.
You could make a myown.dic using Notepad with the acronyms and call it thusly
Cells.CheckSpelling "myown.dic", SpellLang:=1033
That would look in myown.dic as well as the regular Office dictionary
Each user would have to have myown.dic on their computer.
Gord
On Wed, 8 Aug 2007 09:16:04 -0700, jfitzpat <jfitzpat@xxxxxxxxxxxxxxxxxxxxxxxxx>
wrote:
Thank you for the reply -- this worked (I am only an excel novice so pretty
good work for me). New question: the spellchecker is checking all the
cell Notes in the spread*** which are full of acronyms -- is it possible to
exclude the cell Notes or spellcheck this file with a file specific
dictionary? I send this file out to other users and they only need to spell
check what they enter not the cell notes already there.
"Gord Dibben" wrote:
Using a macro is the only work around that I know of.
Sub Spell_Check()
Active***.Unprotect Password:="justme"
Cells.CheckSpelling SpellLang:=1033
Active***.Protect Password:="justme", DrawingObjects:=True, _
Contents:=True, Scenarios:=True
End Sub
Unprotects the ***, does the spellcheck then reprotects the ***.
"justme" can be changed to your password.
Gord Dibben MS Excel MVP
On Tue, 7 Aug 2007 15:18:03 -0700, jfitzpat <jfitzpat@xxxxxxxxxxxxxxxxxxxxxxxxx>
wrote:
I have a spread*** where I want to lock certain cells with formulas. On
the cells that users enter they want to use spellchecker. If I lock the
cells and spread***, then Spellchecker is not available to use -- is there
a way to Lock and Spellcheck?
thanks Joyce
.
- References:
- Re: Spellcheck plus Locking
- From: Gord Dibben
- Re: Spellcheck plus Locking
- Prev by Date: Re: help collecting data.
- Next by Date: Re: What happened to copy picture in Excel 2007?
- Previous by thread: Re: Spellcheck plus Locking
- Next by thread: Re: formula to solve
- Index(es):