In that case try:
Code:
Sub Demo()
Dim Rng As Range
With Selection
With .Find
.ClearFormatting
.Text = "[#Des2]"
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
.Execute
End With
If .Find.Found = True Then
If .Information(wdWithInTable) = True Then
.MoveEnd Unit:=wdRow, Count:=1
Set Rng = .Range
.Collapse wdCollapseEnd
.FormattedText = Rng.FormattedText
End If
End If
End With
End Sub