Try something based on:
Code:
Sub Demo()
Dim Rng As Range
Set Rng = ActiveDocument.Tables(1).Cell(1, 1).Range
Rng.End = Rng.End - 1
Documents.Add
ActiveDocument.Range.FormattedText = Rng.FormattedText
End Sub
or:
Code:
Sub Demo()
Dim Rng As Range
Set Rng = ActiveDocument.Tables(1).Cell(1, 1).Range.InlineShapes(1).Range
Documents.Add
ActiveDocument.Range.FormattedText = Rng.FormattedText
End Sub