reggie55555
MIS
I'm using an excel macro to find/replace a string with a formatted bullet in word. The code I'm using inserts a symbol and the formatting does not apply (i.e., the bulleted text does not allign with an indent). I need an actual bullet. Any ideas?
Code:
wdAPP.Selection.Find.ClearFormatting
wdAPP.Selection.Find.Replacement.ClearFormatting
With wdAPP.Selection.Find
.Text = "sbullet2"
With .Replacement
.ClearFormatting
.Text = ChrW(61558) & vbTab
.Font.Name = "Wingdings"
.Font.Color = wdBlack
End With
.Forward = True
.Wrap = wdFindContinue
.Format = True
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = True
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
wdAPP.Selection.Find.Execute Replace:=wdReplaceAll