我几天来一直在努力解决一个小问题,而且我似乎无法在网上找到它。
我制作了一些VBA excel代码将单元格复制到新的word文档,但现在我希望将单元格粘贴到已经打开的word文档上。
你们中任何人都知道答案吗?
这是代码:
Sub Cheese()
Dim WordDocument As Word.Application
\/\/\/\/\/\/\/
Set WordDocument = Word.Application <<< This creates a new word document every time I press start**
/\/\/\/\/\/\/\
WordDocument.Documents.Add
WordDocument.Visible = True
Sheets("PssDataFDS").Range("D1", (Cells(Rows.Count, 1).End(xlUp))).Copy
WordDocument.Selection.Paste
WordDocument.Selection.Tables(1).AutoFitBehavior wdAutoFitWindow
WordDocument.Selection.Tables(1).Range.ParagraphFormat.SpaceAfter = 0
Application.CutCopyMode = False
Set WordDocument = Nothing
End Sub
评论的部分显示了我的问题。 它每次都会生成一个新文件。但我只想要那一次。 (因此,当文件已经处于活动状态时,它会显示错误或其他内容)
答案 0 :(得分:0)
我感谢@Darren Bartrup-Cook发现了这个问题。
我监督的代码中有一部分。
WordDocument.Documents.Add
这不应该出现在代码中,因为它会生成一个新文档(这正是我不想要的东西)。
抱歉浪费时间。