Excel 2010 - 为什么带有宏的工作簿要求保存更改
通常,当使用包含 VBA 宏的工作簿时,我可以保存工作簿,然后立即尝试关闭它。然后 Excel 询问我是否要保存更改。是什么导致了这种行为?
Often when, working with workbooks that contain VBA macros, I can save the workbook and then immediately attempt to close it. Excel then asks if I want to save changes. What causes this behavior?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只是猜测 - 你处理工作簿打开事件吗?即,您是否有编码的
Workbook_Open()
例程?Just guessing - do you handle Workbook Open event? I.e. do you have a
Workbook_Open()
routine coded?另一种可能性是工作表上存在易失性函数,例如 NOW()、TODAY() 或 DATE(),每次打开工作簿时可能会重新计算这些函数。如果值发生变化,您也会收到提示。
The other possibility is that there are volatile functions on the worksheet(s) like NOW(), TODAY(), or DATE(), which may get recalculated every time the workbook is opened. If the value changes, then you'll get the prompt, as well.