无法让Excel打开Word文档

时间:2017-11-07 08:11:35

标签: excel-vba vba excel

我无法让Excel打开Word文档,我不断收到运行时错误5174.我似乎无法找到问题,路径似乎是正确的。

错误输出的代码行是documents.open行,在下面的代码中:

'Instantiate Word and open the "Transfer price" document.
Set wdApp = New Word.Application
Set wdDoc = wdApp.Documents.Open("C:\Users\SIDVI\Desktop" & "\" & "stWordDocument")

1 个答案:

答案 0 :(得分:1)

您打开文件的声明应为:

Set wdDoc = wdApp.Documents.Open("C:\Users\SIDVI\Desktop\" & stWordDocument)

通过将stWordDocument放在双引号中,您将其设为字符串文字而不是变量,因此您尝试打开名为"C:\Users\SIDVI\Desktop\stWordDocument"的实际文件。