如何以编程方式编写“撤消”代码Excel-Vba 中的函数?
无论如何,是否可以将撤消函数编码到类似于 Excel 自己的撤消函数的 CommandButton 上?
或者是能够调用 Ctrl-Z 快捷键的函数。
Is there anyway to code an undo function onto a CommandButton similar to the Excel's very own undo function?
Or a function which is capable of calling Ctrl-Z shortcut key.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将命令按钮添加到工作表中,并为其指定以下宏:
它只能撤消用户执行的最后操作,不能撤消 VBA 命令。
编辑:如果您需要进一步的撤消功能,请参阅:
使用 Excel VBA 撤消 - JKP
Add the command button to the worksheet and assign the following macro to it:
It can only undo the last action taken by the user and cannot undo VBA commands.
EDIT: If you need further undo capabilities see:
Undo With Excel VBA - JKP