gpt4 book ai didi

excel - 从 Excel 中打开 Word 文档(Office 2016 和 MacOS)

转载 作者:行者123 更新时间:2023-12-01 12:10:47 25 4
gpt4 key购买 nike

我正在尝试通过 Excel 中的 VBA 打开 Word 文档。我明白了

Run-time error 2146959355 (80080005)



我需要将数据从 Excel 复制到 Word,但系统无法打开 Word 文档。

我的部分代码:
Dim ws As Worksheet, msWord As Object

Set ws = ActiveSheet
Set msWord = CreateObject("Word.Application")

With msWord
.Visible = True
.Documents.Open ThisWorkbook.Path & "~/Desktop/! Rezervační smlouva - vzor.docx"
.Activate

最佳答案

您可能会收到该错误,因为

  • MAC 不支持 /作为路径分隔符。它使用 :作为路径分隔符。

  • enter image description here
  • 您的 MS Office 没有最新更新。

  • 在 EXCEL 2011 中试用和测试
    Sub Sample()
    Dim oWord As Object

    Set oWord = CreateObject("Word.Application")

    oWord.Visible = True

    Ret = Application.GetOpenFilename()

    oWord.documents.Open (Ret)
    End Sub

    enter image description here

    关于excel - 从 Excel 中打开 Word 文档(Office 2016 和 MacOS),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51921599/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com