宏不运行 Excel 2007 第二个参数
我创建了一个带有 2 个参数(模块)的公共 vba 函数。 当我调用该函数时,我输入 "=InvoiceAmount2(A9;B9)"。 第一个参数变为蓝色。第二个黑色。 我使用一个参数重新创建相同的函数,第二个参数使用到函数中,这样就可以了。但我需要两个参数
I create a Public vba function with 2 parameters(module).
When I call the function I type "=InvoiceAmount2(A9;B9)".
The first parameter turns blue. The second black.
I remake the same function using one parameter, the second I use into the function, that way it´s ok. But I need two parameters
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是调用带有两个参数的用户定义函数的方法:
=MyFunction(A1,B1)
示例代码:
This is how you call a user defined function with two parameters:
=MyFunction(A1,B1)
Sample Code:
我发现了问题。
我在公式构造函数中调用 udf 函数。我告知了参数(A9和B9)
最后,udf 函数填充了单元格。 “=发票金额2(A9;B9)”。
I found the problem.
I call the udf function in formula constructor. I informed the parameters (A9 and B9)
finally, the udf function filled the cell. "=InvoiceAmount2(A9;B9)".