Just looking for the easiest way to automate it. Can you automate a
find/replace?
Selection.HomeKey wdStory
Selection.Find.ClearFormatting
Selection.Find.Font.Size = 18
With Selection.Find
Do While .Execute(FindText:="*", MatchWildcards:=True,
Wrap:=wdFindContinue, Forward:=True) = True
Selection.Paragraphs(1).Style = "Heading 2"
Selection.Paragraphs(1).Range.Select
Selection.Collapse wdCollapseEnd
Loop
End With
The bulletizing should be taken care of by the definition of the style.

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
> Just looking for the easiest way to automate it. Can you automate a
> find/replace?
[quoted text clipped - 14 lines]
>> >
>> > Thanks in advance for any help.
Erik - 07 Sep 2005 22:14 GMT
Thanks Doug. That seems to work, but it appears to get stuck in an endless
loop, and I have to terminate Word to get out of it.
> Selection.HomeKey wdStory
> Selection.Find.ClearFormatting
[quoted text clipped - 28 lines]
> >> >
> >> > Thanks in advance for any help.