Ok. I figured out most of it so far.
Two things I need help with.
1. How can I replace only the first occurance of "^l" in each cell of the
column.
2. This code is inserting the paragraph break
Original Cell (formating marks):
Corn Hill ^l
1 or 2 BR, hrdwds, natural trim, coin-op laund in ^l
basement, off-st parking.
Cell after macro (formating marks):
Corn Hill ^p
^p
1 or 2 BR, hrdwds, natural trim, coin-op laund in ^p
basement, off-st parking.
What I want:
Corn Hill ^p
1 or 2 BR, hrdwds, natural trim, coin-op laund in ^l
basement, off-st parking.^p
Here is the code as I have it now:
Sub AddEnter()
Dim rgeCell As Range
Dim i As Long
With ActiveDocument.Tables(1).Columns(1)
For i = 1 To .Cells.Count
Set rgeCell = .Cells(i).Range
Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
With Selection.Find
.Text = "^l"
.Replacement.Text = "^p"
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute Replace:=wdReplaceAll
With rgeCell
.Paragraphs(1).Range.InsertParagraphAfter
.ParagraphFormat.SpaceBefore = 0
.ParagraphFormat.SpaceAfter = 0
End With
Next
End With
End Sub