View Single Post
 
Old 08-19-2015, 08:43 AM
mikemike616 mikemike616 is offline Windows 7 64bit Office 2013
Novice
 
Join Date: Aug 2015
Posts: 7
mikemike616 is on a distinguished road
Default

Yes thank you. Collapsing the range beforehand does the trick.

For anyone else who may run into this problem, if you use "wdCollapseEnd" to insert a cross reference after preexisting text in a cell, it will put it in the next cell. To avoid this, use:

Code:
.MoveEnd Unit:=wdCharacter, Count:=-1
.Collapse wdCollapseEnd
This will subtract the last character off the range so when you collapse to the end, it will put the range at the last character in the cell.
Reply With Quote