如何将 Excel 单元格映射到返回数据表的 VBA 函数?

发布于 2024-10-01 22:04:42 字数 358 浏览 2 评论 0原文

我的 Excel 工作簿中有一个通过 COM 向 VBA 宏公开的 dll。在 dll 中,主要函数将来自工作表中各个单元格的一堆数据作为输入,并生成一个输出表以显示在同一 Excel 工作表的其他位置。我试图弄清楚如何在输入单元格之一发生变化时调用此函数,同时填充所有输出单元格。

我注意到 VBA UDF 无法写入电子表格调用它(无副作用)...它只能从电子表格中读取并通过函数主返回值返回值。

有没有一种好方法可以将大型输入集映射到大型输出集,而不必为表中的每个条目单独调用 dll?

I have a dll exposed via COM to VBA macros in my Excel workbook. In the dll, the primary function takes as input a bunch of data from various cells in the worksheet, and produces a table of outputs to be displayed elsewhere on the same excel worksheet. I am trying to figure out how to have this function called any time one of the input cells change, populating all the output cells at the same time.

It has come to my attention that a VBA UDF cannot write to the speadsheet calling it (no side-effects)... it can only read from the spreadsheet and return values through the functions primary return value.

Is there a good way to map a large input set to a large output set without having to call the dll separately for each entry in the table?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

宫墨修音 2024-10-08 22:04:42

是的。如果函数返回一个数组,您可以选择所有未来的结果单元格,输入一次公式,

=TheFunction(a1,b2,c3)

然后按 Ctrl+Shift+Enter

Yes. If the function returns an array, you can select all the future result cells, enter the formula once,

=TheFunction(a1,b2,c3)

and press Ctrl+Shift+Enter.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文