I place a bookmark within a word document table cell at the curser location. Now I want to move down one line after the bookmark, within the same table cell, and place another bookmark. I tried adding a carriage return after the bookmark, but the curser remains on the first line within the bookmark.
ActiveDocument.Bookmarks.Add Name:=bmItemNo, Range:=BMRange
'Adds carriage return after bookmark
BMRange.InsertAfter (Chr(13))
I also tried moving my curser to the end of the line and down 1 line, but it jumps out of the table cell:
ActiveDocument.Bookmarks.Add Name:=bmItemNo, Range:=BMRange
'Adds carriage return after bookmark
BMRange.InsertAfter (Chr(13))
Selection.EndKey unit:=wdLine, Extend:=wdMove
Selection.MoveDown unit:=wdLine, Count:=1, Extend:=wdMove
My bookmark can also word wrap with multiple lines.
How do I move my curser to the next line after a bookmark?