I've read this post on inserting a photo and caption into a table cell:
... forum/showthread.php t=33113 (Modify Macro which Batch Insert Photos to also include caption)

After inserting the caption, it adds a paragraph mark at the end. Inside of a table cell, this causes a new line, which I don't want, since it adds to the height of the cell, and therefore the row.

I cannot figure out how to go to the end of the cell before doing a "backspace". I've been trying for several days. It's a hard item to search for!

I'm using Word 2010

Code:
[VBA]
photoTitle = ": " + photos(nextPhoto, 0) & " <Extra photo details here>"
oILS.Range.InsertCaption Label:="Photo", TitleAutoText:="" _
, Title:=photoTitle, Position:=wdCaptionPositionBelow, ExcludeLabel:=0

Selection.Cells.Item(1).Range.MoveEnd
Selection.Collapse (wdCollapseEnd)
Selection.TypeBackspace
[/VBA]

Thanks in advance for any help.