在 Excel 中设置范围时 VBA 失败

发布于 2024-11-24 17:14:38 字数 764 浏览 2 评论 0原文

使用 MSDN 我正在尝试在 Excel 2007 中设置单元格的值。以下是我的步骤采取:

  1. 在 Excel 选项中选择启用所有宏信任对 VBA 对象模型的访问
  2. 创建一个新的 Excel 工作簿。
  3. 添加新的 VBA 模块。
  4. 插入以下函数:

    函数 MyTest(rg 作为范围)
        rg.值 = 1
        我的测试 = 1234
    结束功能
    
  5. 将公式 =MyTest(B1) 添加到 A1 的单元格中。

当执行 MyTest 的第一行时,调试器简单失败。如果没有任何错误,它将停止调试并在 A1 中显示 #VALUE!。 B1仍然空着。

我尝试设置 .Formula 而不是 .Value。我尝试使用 ActiveSheetWorksheets["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:

  1. In the Excel options choose Enable all Macro's and Trust access to VBA object model.
  2. Create a new Excel WorkBook.
  3. Add a new VBA Module.
  4. Insert the following function:

    Function MyTest(rg As Range)
        rg.Value = 1
        MyTest = 1234
    End Function
    
  5. 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 技术交流群。

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

发布评论

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

评论(1

蒗幽 2024-12-01 17:14:38

不允许从单元格公式调用的 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.

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