Hi Brock,
I'm still not understanding exactly what you're trying to do, but maybe the following will help. It puts a tab, then 'i', into the body of the document immediately after the content control it relates to:
Code:
Sub Test()
Dim strTmp As String, i As Integer, Rng As Range
With ActiveDocument.SelectContentControlsByTag("ContainerContents")
For i = 1 To .Count
strTmp = strTmp & .Item(i).Range.Text
Set Rng = .Item(i).Range
With Rng
.Collapse (wdCollapseEnd)
.Move wdCharacter, 1
.InsertAfter vbTab & i
End With
Next
End With
End Sub