Try, for example:
Code:
Sub TblDemo()
Application.ScreenUpdating = False
With ActiveDocument.Range
With .Find
.ClearFormatting
.Replacement.ClearFormatting
.Text = "Info:"
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindStop
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
End With
Do While .Find.Execute
If .Information(wdWithInTable) = True Then
If .Text = Trim(Split(.Cells(1).Range.Text, vbCr)(0)) Then .Rows.Delete
End If
.Collapse wdCollapseEnd
Loop
End With
Application.ScreenUpdating = True
End Sub