Hi, RobiNew! Try this:
Code:
Sub ReplRefNrWithinFootnote()
'Replaces with dash paragraph mark in the text of a footnote
Set parRng = ActiveDocument.StoryRanges(wdFootnotesStory)
On Error Resume Next
With parRng.Find
.ClearFormatting
.Replacement.ClearFormatting
.Wrap = wdFindStop
.Format = False
.MatchWildcards = False
.text = "^p"
While .Execute And parRng.End < ActiveDocument.StoryRanges(wdFootnotesStory).End
parRng.text = Replace(parRng.text, Chr(13), " " & Chr(150) & " ")
parRng.Collapse wdCollapseEnd
Wend
End With
End Sub