如何从 Windows 上的自定义函数访问 Excel API?
How can I access the Excel API from a custom function on Windows?
我正在尝试以类似于 here.
中描述的方式在我的自定义函数中使用 Excel API
它在 Excel 的 Mac 版本和 Web 版本上运行良好,但是在 Windows 版本上不起作用。
在 Windows 上,当自定义函数尝试使用 var context = new Excel.RequestContext();
访问上下文时,我在调试日志中看到 reference error Excel is not defined
。
我怎样才能让它在 Windows 上运行?
为了从 Windows 上的自定义函数调用 Excel API,您需要将 add-in 配置为使用共享运行时。可以参考tutorial.
我正在尝试以类似于 here.
中描述的方式在我的自定义函数中使用 Excel API它在 Excel 的 Mac 版本和 Web 版本上运行良好,但是在 Windows 版本上不起作用。
在 Windows 上,当自定义函数尝试使用 var context = new Excel.RequestContext();
访问上下文时,我在调试日志中看到 reference error Excel is not defined
。
我怎样才能让它在 Windows 上运行?
为了从 Windows 上的自定义函数调用 Excel API,您需要将 add-in 配置为使用共享运行时。可以参考tutorial.