我想在powerpoint演示文稿中打開excel文件。 這是我的代碼:如何在VBA中使用Powerpoint在前臺打開excel
Sub diversestickersKoole()
Dim xlApp As Object
Dim xlWorkBook As Object
Set xlApp = CreateObject("Excel.Application")
xlApp.Visible = True
Set xlWorkBook = xlApp.Workbooks.Open("V:\Oliedocs\Koole\Stickers Scheepstanks Koole.xltm", True, False)
Set xlApp = Nothing
Set xlWorkBook = Nothing
End Sub
excel文件在後臺打開。這必須在前臺。
有人可以幫助我嗎?
不應該是End Sub而不是End Function?代碼在演示文稿頂部打開工作簿。有什麼問題? – sktneer