I have the same problem
Selection.Find.ClearFormatting
With Selection.Find
.Text = "[#$]"
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute
Selection.HomeKey Unit:=wdLine
Selection.TypeParagraph
Selection.MoveUp Unit:=wdLine, Count:=1
' Selection.MoveDown Unit:=wdLine, Count:=1
Selection.Paste
The error appens at the line Selection.Paste, after Debug if i continue the ends regularly
the pasted object is a row in a table
Thanks for your help
Marzio