Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在personal.xls 中编写了一些宏,以便在我打开任何excel 文件时可以使用它们
但是,当我使用 vbscript - CreateObject("Excel.Application") 打开一个 excel 文件时,personal.xls 中编写的宏不可用
知道当我使用代码打开 excel 时如何获取这些宏。
谢谢,什里坎特
我找到了答案。我应该打开personal.xls,然后打开所需的文件。这样,personal.xls 中的宏就可以使用了。
Set PRSNL = XL.Workbooks.Open("Path to Personal.xls") XL.Visible = True Set WKB = XL.Workbooks.open(Path to required file)