标签: excel vba excel-vba
我是宏的新手,我想知道是否有办法将excel工作簿自动保存到另一个工作簿中,覆盖数据。就像文件位于不同的文件夹中一样。每次更改数据时,它都会自动将该工作簿保存到新位置。另外,如何避免看到消息Are you sure you want to overwrite this file?
Are you sure you want to overwrite this file?
答案 0 :(得分:0)
Workbook SaveAs命令对您有很大帮助。将其与Application.DisplayAlerts = False
Application.DisplayAlerts = False
确保将其放在函数或Excel button中。