> Yeah, Greg, that *is* a whole lot simpler than two ranges and looping and .
> .. .
[quoted text clipped - 95 lines]
> > >> End With
> > >> End Sub
USAFA,
Try something like:
Sub ScratchMacro()
ActiveDocument.Range(0, 0).Select
With Selection.Find
.ClearFormatting
.Replacement.ClearFormatting
.Text = " *****************PERSONAL"
.Forward = True
.Wrap = wdFindStop
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
Do While .Execute
On Error Resume Next
Selection.Collapse Direction:=wdCollapseStart
Selection.MoveUp Unit:=wdLine, Count:=5
Selection.MoveDown Unit:=wdLine, Count:=5, Extend:=wdExtend
Selection.Delete
Selection.MoveEndUntil Cset:=vbCr, Count:=wdForward
Selection.MoveRight Unit:=wdCharacter, Count:=1, Extend:=wdExtend
If Selection.Range.End = ActiveDocument.Range.End Then
ActiveDocument.Range(0, 0).Select
Exit Sub
End If
Selection.MoveDown Unit:=wdLine, Count:=1
Selection.Collapse wdCollapseEnd
Loop
ActiveDocument.Range(0, 0).Select
End With
End Sub
P.S. Go Navy!!

Signature
Greg Maxey/Word MVP
A Peer in Peer to Peer Support
> Greg & Ed,
>
[quoted text clipped - 118 lines]
>>>>> End With
>>>>> End Sub
USAFA - 17 Feb 2005 01:39 GMT
Greg,
I see what you're trying to do, but after copying it into a new macro &
running it, nothing happened. I'm stumped!
Thoughts?
USAFA
> USAFA,
>
[quoted text clipped - 157 lines]
> >>>>> End With
> >>>>> End Sub
Greg Maxey - 17 Feb 2005 01:51 GMT
USAFA,
I just copied it to a new document and it worked fine. Do I have the spaces
and number of *'s right in the find string?

Signature
Greg Maxey/Word MVP
A Peer in Peer to Peer Support
> Greg,
> I see what you're trying to do, but after copying it into a new macro
[quoted text clipped - 168 lines]
>>>>>>> End With
>>>>>>> End Sub
USAFA - 17 Feb 2005 03:57 GMT
Greg,
It finally worked. I can't tell you how much that helped me! Thanks again.
USAFA
> USAFA,
>
[quoted text clipped - 173 lines]
> >>>>>>> End With
> >>>>>>> End Sub