S
Steved
Hello from Steved
T( 9 0 4) S( 1 0 0) C( 0 0 0) D( 3 0 2) J( 6 0 2)
..Text = "[A-Z]\([0-9 ]{1,}\)" works fine but I would like to
Bold and increase the Font to 10 What do I need to do please,
with my attempt below to work Thankyou.
Sub DeleteT()
Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
With Selection.Find
.Text = "[A-Z]\([0-9 ]{1,}\)"
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindContinue
.Format = True
.MatchCase = False
.MatchWholeWord = False
.MatchAllWordForms = False
.MatchSoundsLike = False
.MatchWildcards = True
End With
With Selection.Find.Font
.Size = 10
.Bold = True
Selection.Find.Execute Replace:=wdReplaceAll
End With
End Sub
T( 9 0 4) S( 1 0 0) C( 0 0 0) D( 3 0 2) J( 6 0 2)
..Text = "[A-Z]\([0-9 ]{1,}\)" works fine but I would like to
Bold and increase the Font to 10 What do I need to do please,
with my attempt below to work Thankyou.
Sub DeleteT()
Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
With Selection.Find
.Text = "[A-Z]\([0-9 ]{1,}\)"
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindContinue
.Format = True
.MatchCase = False
.MatchWholeWord = False
.MatchAllWordForms = False
.MatchSoundsLike = False
.MatchWildcards = True
End With
With Selection.Find.Font
.Size = 10
.Bold = True
Selection.Find.Execute Replace:=wdReplaceAll
End With
End Sub