如何将 Excel 单元格映射到返回数据表的 VBA 函数?
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。如果函数返回一个数组,您可以选择所有未来的结果单元格,输入一次公式,
然后按 Ctrl+Shift+Enter。
Yes. If the function returns an array, you can select all the future result cells, enter the formula once,
and press Ctrl+Shift+Enter.