Hi all
I have a spellcheck macro that unprotects the active worksheet and checks spelling in a range of cells and then protects it again.The cells are (a,52 to k57).I have merged these cells because that is where I want to put my job description.The problem is it does not get all the misspelled words.Actually it gets very few,and it also checks spelling in some of the text boxes I have at the top of the sheet and I donot want it to.Thanks in advance
Private Sub CommandButton3_Click()
ActiveSheet.Unprotect Password:=""
ActiveSheet.Range("a52:k57").CheckSpelling SpellLang:=2057
ActiveSheet.Protect Password:=""
End Sub