如何使用自动覆盖的workbook.saveas

问题描述 投票:45回答:3

在这部分代码中,Excel总是提示:“文件已存在,您要覆盖吗?”

Application.DisplayAlerts = False
Set xls = CreateObject("Excel.Application")
Set wb = xls.Workbooks.Add
fullFilePath = importFolderPath & "\" & "A.xlsx"

wb.SaveAs fullFilePath, AccessMode:=xlExclusive, ConflictResolution:=True   

wb.Close(True)

如果我有db.SaveAs,为什么DisplayAlerts = False总是提示我覆盖现有文件?

提前致谢!

excel-vba excel-2010 vba excel
3个回答
69
投票

要看不到提示设置xls.DisplayAlerts = False

ConflictResolution不是真或假属性,它应该是xlLocalSessionChanges - 请注意,这与显示覆盖提示无关!

Set xls = CreateObject("Excel.Application")    
xls.DisplayAlerts = False
Set wb = xls.Workbooks.Add
fullFilePath = importFolderPath & "\" & "A.xlsx"

wb.SaveAs fullFilePath, AccessMode:=xlExclusive,ConflictResolution:=Excel.XlSaveConflictResolution.xlLocalSessionChanges    
wb.Close (True)

4
投票

我建议在执行SaveAs之前删除它存在的文件。

If Dir("f:ull\path\with\filename.xls") <> "" Then
    Kill "f:ull\path\with\filename.xls"
End If

它比关闭和打开DisplayAlerts更容易,而且如果DisplayAlerts由于代码崩溃而保持关闭,如果您在同一会话中使用Excel,则可能会导致问题。


0
投票

分裂意见分歧

我更喜欢

xl0.DisplayAlerts = False

保存,然后应该快速返回

xl0.DisplayAlerts = True

..

© www.soinside.com 2019 - 2024. All rights reserved.