VBA Excel到Word粘贴包括粘贴文本后的新行

时间:2017-03-15 03:50:30

标签: vba excel-vba word-vba excel

我正在尝试将单元格的文本粘贴到word doc上的书签位置。当我这样做时,它会在新粘贴的文本后添加一个新行。我怎么摆脱这个?我正在使用

PasteAndFormat (wdFormatSurroundingFormattingWithEmphasis)

1 个答案:

答案 0 :(得分:1)

试试这个: -

Txt = "My cell value as string"
With ActiveDocument
    .Bookmarks("Mark").Range.Text = Txt
End With

书签将被覆盖,无法再次使用。如果需要保留它,请捕获包含新文本的范围并重置指向它的书签。