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.
我是 VBA 编码的新手,我需要帮助。
我的总体目标是拥有正确的编码,让我能够
我有正确的编码,可以让我完成第一位(因此我可以将任何只读工作簿转换为读写工作簿),但这不允许我保存更改(仅另存为)。
如果需要,我有能力使用授权来实现这一点,但是任何人都可以帮助我提供所需的代码吗?
谢谢蒂姆。
如果您已经拥有处于读写模式的工作簿,您需要做的就是使用以下命令抑制“另存为”提示Application.DisplayAlerts:
Application.DisplayAlerts
Application.DisplayAlerts = False ThisWorkbook.SaveAs Application.DisplayAlerts = True