
VBA help for word needed!
Easiest way is to record a macro and edit it to suit. The following is a
word macro I slapped together by selecting an entire document and removing
all underlines.
Sub Macro1()
'
' Macro2 Macro
' Macro recorded 12/16/99 by Don Coon
'
Selection.WholeStory
Selection.Font.Underline = wdUnderlineNone
End Sub
Quote:
> Hi all.
> Si I've got this massive RTF file that I modify through Word. And
> there's plenty of words doubly underlined. So I'd like to get rid of
> this underlinement.
> How can VB help with this, as I never used any macros to do anything
> under Word?
> Please email me the answer.
> Thanx.
> Patrick.