我正在尝试将单元格的文本粘贴到word doc上的书签位置。当我这样做时,它会在新粘贴的文本后添加一个新行。我怎么摆脱这个?我正在使用
PasteAndFormat (wdFormatSurroundingFormattingWithEmphasis)
答案 0 :(得分:1)
试试这个: -
Txt = "My cell value as string" With ActiveDocument .Bookmarks("Mark").Range.Text = Txt End With
书签将被覆盖,无法再次使用。如果需要保留它,请捕获包含新文本的范围并重置指向它的书签。