How can I alter my vba code to highlight the cell with spelling mistakes?
Tried adding Application.ScreenUpdating = True but didnt work.
Sub SpellCheckSheet()
Application.ScreenUpdating = True
Dim xRg As Range
Call unprotect_sheet
Set xRg = ActiveSheet.Range("A:C")
xRg.CheckSpelling
Call protect_sheet
End Sub
Thanks.
Trying this, however when i cancel the spellchecker it doesnt stop the loop.
Sub SpellCheckSheet()
Dim cell As Range
With ActiveSheet
.Unprotect ("123")
For Each cell In Range("A:C")
.CheckSpelling
Next cell
.Protect ("123")
End With
End Sub
IS there a way to identify UNPROTECTED cells within columns A:C and then, for each one, Activate/select that cell (so that you can see it on screen) and then activate Spell Check on that specific cell?