Is there a way to copy nested bookmarks from one document to another? The BK does not exist in the Destination document.
For instance:
[Here is an example [sentence].]
End result:
[Here is an example sentence.]
I tried BKSource.Bookmarks(strBookmark).Range.Select and then BKSource.Bookmarks(strBookmark).Range.Copy but that did not help.
I can successfully copy the outer bk but the inner bk is gone.
Please help.
For instance:
[Here is an example [sentence].]
Code:
BKSource.Bookmarks(strBookmark).Range.Copy
Set RangeDestination = BKDestination.Bookmarks(strBookMarkInsertAfter).Range
RangeDestination.Collapse Direction:=wdCollapseEnd
RangeDestination.Paste
RangeDestination.Bookmarks.Add strBookmark
End result:
[Here is an example sentence.]
I tried BKSource.Bookmarks(strBookmark).Range.Select and then BKSource.Bookmarks(strBookmark).Range.Copy but that did not help.
I can successfully copy the outer bk but the inner bk is gone.
Please help.