首页 > 解决方案 > 启动特定版本的 Excel

问题描述

我正在使用 IBM Personal Communications 模拟器来运行启动 Excel 应用程序的宏。

set appExcel = CreateObject("Excel.Application")
appExcel.Visible = true
set appWB = appExcel.workbooks.Open("LINK")
Set appWS = appWB.Sheets("Sheet1")

默认情况下,它会在 Excel 2016 中打开所有内容。是否可以指定将在 Visual Basic 中打开的 Excel 版本?

标签: excelvbscript

解决方案


推荐阅读