lezawang
Well-known Member
- Joined
- Mar 27, 2016
- Messages
- 1,805
- Office Version
- 2016
- Platform
- Windows
Hi
the code below check the spelling but I noticed that excel will not see a word has wrong spelling if it has number. Is that by design? for example, excel wont give error spelling if the word like this
teest1
ttest1
testtttt1
but without number one, all above words will be checked for spelling.
the code below check the spelling but I noticed that excel will not see a word has wrong spelling if it has number. Is that by design? for example, excel wont give error spelling if the word like this
teest1
ttest1
testtttt1
but without number one, all above words will be checked for spelling.
Code:
Sub cells_spelling()
Workbooks(1).Worksheets(1).Cells.CheckSpelling
End Sub