如何在 Mac Excel 2016(版本 15)中停止正在运行的宏?
我试过: 命令 + 。 Esc键 退出 x2
Application.EnableCancelKey = xlInterrupt ,没有任何区别。
Application.EnableCancelKey = xlInterrupt
正如 jsotola 所建议的,使用 DoEvents 让 Excel 处理按键,然后 hold Command + 。打断它。
感谢您的帮助 jsotola!
确保您在 VBA/ExcelVBA 窗口上,然后尝试以下步骤:
步骤 1-- 菜单栏 -> 运行 -> 重置
步骤 2-- 菜单栏 -> 运行 -> 中断
正如 jsotola 所建议的,使用 DoEvents 让 Excel 处理按键,然后 hold Command + 。打断它。
感谢您的帮助 jsotola!