vba代码求助,删除sheet页
发布网友
发布时间:2022-05-03 11:06
我来回答
共2个回答
热心网友
时间:2022-06-19 07:18
Application.DisplayAlerts = False
Sheets("Sheet3").Delete
Application.DisplayAlerts = True
关闭和开启弹窗即可。
热心网友
时间:2022-06-19 07:18
下面代码删除当前工作表
sub 删除()
Application.DisplayAlerts = False
ActiveWindow.SelectedSheets.Delete
Application.DisplayAlerts = True
End Sub