Jim,
Select the list and try this:
Sub ScratchMacro()
Dim oPara
Dim oRng As Range
For Each oPara In Selection.Range.Paragraphs
Set oRng = oPara.Range
oRng.MoveEnd wdCharacter, -1
oRng.Text = Chr(34) & oRng.Text & Chr(34)
Next
End Sub

Signature
Greg Maxey/Word MVP
See:
http://gregmaxey.mvps.org/word_tips.htm
For some helpful tips using Word.
> Hi! Can anybody tell me how to make a macro keep REPEATING until it
> reaches the end of the list?
[quoted text clipped - 34 lines]
>
> Jim
Jim In Minneapolis - 13 Nov 2005 05:11 GMT
THANKS, Greg!
Your're a genius. Seriously!
You've saved my life.
God bless you.
Jim
> Jim,
>
[quoted text clipped - 48 lines]
> >
> > Jim
Greg Maxey - 13 Nov 2005 17:23 GMT
That is twice this month that someone has made that claim. Helpful, I try
to be. A genius, emphatically not. Glad I could help.

Signature
Greg Maxey/Word MVP
See:
http://gregmaxey.mvps.org/word_tips.htm
For some helpful tips using Word.
> THANKS, Greg!
>
[quoted text clipped - 58 lines]
>> >
>> > Jim
Tony Jollans - 13 Nov 2005 19:42 GMT
Greg's code is fine but you really don't need a loop, or even code, to do
this.
Assuming your lines are ended with paragraph marks, you can use Find &
Replace ...
Check "Use Wildcards"
Find (<*>)(^13)
Replace "\1"\2
Hit Replace All
You can record code if you want it - and it should be faster than looping
through paragraphs
--
Enjoy,
Tony
> Jim,
>
[quoted text clipped - 54 lines]
> >
> > Jim