如何通过Excel VBA在Word文档中打开特定页面?

时间:2018-10-22 13:51:26

标签: excel vba excel-vba ms-word

我想使用Excel Vba命令按钮从Web服务器中打开Word文档中的特定页面(例如:第13页)。

我尝试使用下面的代码,但在这里我可以打开word文档,但不能根据需要直接打开页码。我不明白我要去哪里错了。

Private Sub cmdin_Click()

    Set wordApp = CreateObject("word.Application")

    wordApp.documents.Open "https://tr1.sharepoint.com/sites.docs"
    wordApp.Visible = True

    Set wordApp = Nothing

    wordApp.ActiveWindow.Selection.Goto What:=wdGoToBookmark, Name:=13 'Page number

    ActiveDocument.Bookmarks("\Page").Select
End Sub

0 个答案:

没有答案