H
Hellmasker
Hi everyone,
I have approximately 35000 words that has been edited by an editor. H
put a line through all text that he thinks is incorrect and added tex
that is underlined to replace the incorrect text.
I would like to figure out how to select all the text with th
strikethrough formatting and delete it AND select all text with th
underline formatting and remove the underline formatting.
I have no experience with macros but I found this to delete al
misspelled words:
Dim i As Long
With ActiveDocument
For i = .SpellingErrors.Count To 1 Step -1
.SpellingErrors(i).Delete
Next i
End With
From my programming experience, I'd think SpellingErrors would have t
be replaced with something that selects the underline format.
Can anyone help? Would be greatly appreciated! Thanks
I have approximately 35000 words that has been edited by an editor. H
put a line through all text that he thinks is incorrect and added tex
that is underlined to replace the incorrect text.
I would like to figure out how to select all the text with th
strikethrough formatting and delete it AND select all text with th
underline formatting and remove the underline formatting.
I have no experience with macros but I found this to delete al
misspelled words:
Dim i As Long
With ActiveDocument
For i = .SpellingErrors.Count To 1 Step -1
.SpellingErrors(i).Delete
Next i
End With
From my programming experience, I'd think SpellingErrors would have t
be replaced with something that selects the underline format.
Can anyone help? Would be greatly appreciated! Thanks