在 Excel 中设置范围时 VBA 失败
使用 MSDN 我正在尝试在 Excel 2007 中设置单元格的值。以下是我的步骤采取:
- 在 Excel 选项中选择
启用所有宏
和信任对 VBA 对象模型的访问
。 - 创建一个新的 Excel 工作簿。
- 添加新的 VBA 模块。
插入以下函数:
函数 MyTest(rg 作为范围) rg.值 = 1 我的测试 = 1234 结束功能
将公式
=MyTest(B1)
添加到 A1 的单元格中。
当执行 MyTest 的第一行时,调试器简单失败。如果没有任何错误,它将停止调试并在 A1 中显示 #VALUE!
。 B1仍然空着。
我尝试设置 .Formula
而不是 .Value
。我尝试使用 ActiveSheet
和 Worksheets["Sheet1"]
访问工作表。导致此错误的可能原因是什么?
Using an example from MSDN I'm trying to set the value of a cell in Excel 2007. Here are the steps I took:
- In the Excel options choose
Enable all Macro's
andTrust access to VBA object model
. - Create a new Excel WorkBook.
- Add a new VBA Module.
Insert the following function:
Function MyTest(rg As Range) rg.Value = 1 MyTest = 1234 End Function
Add the formula
=MyTest(B1)
to the cell at A1.
When the first line of MyTest is executed, the debugger simple fails. Without any error it stops debugging and displays #VALUE!
in A1. B1 remains empty.
I've tried setting .Formula
instead of .Value
. I've tried using ActiveSheet
and Worksheets["Sheet1"]
to access Worksheets. What can possibly be the cause of this error?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不允许从单元格公式调用的 VBA 函数修改单元格内容。实施此限制是为了让 Excel 能够跟踪依赖关系。
如果您需要修改单元格内容,则必须通过其他机制(例如用户表单)调用 VBA。
VBA functions that are called from cell formulae are not allowed to modify cell contents. This restriction is in place so that Excel can keep track of dependencies.
If you need to modify cell contents then you'll have to invoke your VBA through some other mechanism, e.g. a user form.