Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
按“F5”运行workbook1的sheet1上的所有代码后,宏窗口跳转到workbook2的sheet2。谁能帮忙解释一下?谢谢!
在没有看到您的代码的情况下,我的猜测是 Workbook1 中的某些代码正在调用Application.Run命令以执行 workbook2 中的代码。或者可能只是像 Sean 提到的那样在 sheet2 上打开/激活 workbook2 窗口。
Application.Run
我想我找到了原因。操作的工作表(上例中的 E)最初是隐藏的。
我添加了
E.visible = true
首先取消隐藏工作表E,然后问题就消失了。