We are continually faced with a series of great opportunities brilliantly disguised as insoluble problems
Bookmark with: 
Share/Save/Bookmark
FREE initial consultation FREE initial consultation Secure Online Clients Area Secure Online Clients Area
Worldwide service Worldwide service Choice Of payments Choice Of payments [Fixed Fee or Hourly or Daily rate] +44 (0) 208 209 0835/ 07956877605
» MS Word » how to gather all the misspelled words in an ms word document and place them in a new document

how to gather all the misspelled words in an ms word document and place them in a new document

Open up word

Select tools, followed by macro copy the following macro deleting any standard text:


Sub GetSpellingErrors()
Dim DocThis As Document
Dim iErrorCnt As Integer
Dim J As Integer

Set DocThis = ActiveDocument
Documents.Add

iErrorCnt = DocThis.SpellingErrors.Count
For J = 1 To iErrorCnt
Selection.TypeText Text:=DocThis.SpellingErrors(J)
Selection.TypeParagraph
Next J
End Sub
Practical advice for business
home | feedback | site map