Chris
No. As far as I can tell, the sheet must be unprotected. You could use a
macro to unprotect the sheet and only check certain cells, then reprotect.
Here's an example.
Sub test()
Dim rng As Range
Dim cell As Range
Sheet1.Unprotect
For Each cell In Sheet1.UsedRange
If Not cell.Locked Then
If rng Is Nothing Then
Set rng = cell
Else
Set rng = Union(rng, cell)
End If
End If
Next cell
rng.Check
Sheet1.Protect
End Sub
--
Dick Kusleika
MVP - Excel
Post all replies to the newsgroup.
"Chris" <lsa...@charter.net> wrote in message
news:3fd301c27521$0f6541e0$37ef2ecf@TKMSFTNGXA13...
> rng.Check
should say
rng.CheckSpelling
--
Dick Kusleika
MVP - Excel
Post all replies to the newsgroup.
"Dick Kusleika" <di...@paragonconstructioninc.com> wrote in message
news:#MvWuSUdCHA.1540@tkmsftngp10...