It did not work, but with small modification I have it working. The code
looks like:
ActiveDocument.Bookmarks("CompanyName").Range.InsertBefore
(.Range("D" & x).Text)
ActiveDocument.Bookmarks("CompanyName").Select
Selection.Font.Bold = wdToggle
Thanks for help.
Tony
It certainly works for me.

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
> It did not work, but with small modification I have it working. The code
> looks like:
[quoted text clipped - 19 lines]
>> >
>> > Tony
Al Borges - 16 Oct 2005 19:02 GMT
One thing that you may be interested in is the situation whereby you need to
make numerous items BOLD. You have to reset things. Here's a sample code:
With .ActiveDocument.Content.Find
.ClearFormatting
.Text = "PAST MEDICAL HISTORY:"
.Forward = True
'.Replacement.Text = "PAST MEDICAL HISTORY:"
.Replacement.Font.Bold = True
.Execute Replace:=wdReplaceAll
End With
Call Resetsearch
With .ActiveDocument.Content.Find
.Text = "FAMILY HISTORY:"
.Forward = True
'.Replacement.Text = "FAMILY HISTORY:"
.Replacement.Font.Bold = True
.Execute Replace:=wdReplaceAll
End With
Call Resetsearch
With .ActiveDocument.Content.Find
.Text = "SOCIAL HISTORY:"
.Forward = True
'.Replacement.Text = "SOCIAL HISTORY:"
.Replacement.Font.Bold = True
.Execute Replace:=wdReplaceAll
End With
Call Resetsearch
etc etc
End Sub
Sub Resetsearch()
With Selection.Find
.ClearFormatting
.Replacement.ClearFormatting
.Text = ""
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
.Execute
End With
End Sub
Regards,
Al
> It certainly works for me.
>
[quoted text clipped - 21 lines]
>>> >
>>> > Tony