I am sure it will be, but I'll have to think about it :)

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> I want to keep B text and paste A text but insert a return (pilcrow)
> first before the paste? Is that doable?
[quoted text clipped - 52 lines]
>>>>>
>>>>> Many thanks for any assist!
How about
Dim RefDoc As Document
Dim cTable As Table
Dim oldPart As Range, newPart As Range
Dim i As Long
Set RefDoc = ActiveDocument
Set cTable = RefDoc.Tables(1)
For i = 2 To cTable.Rows.Count
Set oldPart = cTable.Cell(i, 1).Range
oldPart.End = oldPart.End - 1
Set newPart = cTable.Cell(i, 2).Range
newPart.End = newPart.End - 1
With newPart
With .Find
.ClearFormatting
.Replacement.ClearFormatting
.Execute findText:=newPart, _
ReplaceWith:=newPart & "^p" & oldPart, _
replace:=wdReplaceAll, _
MatchWildcards:=False, _
Forward:=True, _
Wrap:=wdFindContinue
End With
End With
Next i

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> I want to keep B text and paste A text but insert a return (pilcrow)
> first before the paste? Is that doable?
[quoted text clipped - 52 lines]
>>>>>
>>>>> Many thanks for any assist!
Summer - 29 Jan 2008 08:02 GMT
Very doable thank you for that Graham.
> How about
>
[quoted text clipped - 81 lines]
>>>>>>
>>>>>> Many thanks for any assist!
Graham Mayor - 29 Jan 2008 08:46 GMT
You are welcome :)

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> Very doable thank you for that Graham.
>> How about
[quoted text clipped - 90 lines]
>>>>>>>
>>>>>>> Many thanks for any assist!