ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Suppress Delete Sheet Warning (https://www.excelbanter.com/excel-programming/412922-suppress-delete-sheet-warning.html)

Scott

Suppress Delete Sheet Warning
 
I'm setting Application.ScreenUpdating = False before deleting a "hidden"
sheet in my workbook. My problem is that the warning saying "Data may exist
...." that pop ups when the "Delete" command is issued, is forcing me to
click "Delete". Is there anyway to auto answer the "Delete" dialog button
and prevent the user from getting any visual warning of the delete?



CODE:

Sub RemoveSheetDateHelper()

Application.ScreenUpdating = False

Sheets("tmpSheet").Visible = True
Sheets("tmpSheet").Select
Range("A1").Select
ActiveWindow.SelectedSheets.Delete

Application.ScreenUpdating = True
End Sub



Gord Dibben

Suppress Delete Sheet Warning
 
Sub RemoveSheetDateHelper()
With Application
.ScreenUpdating = False
.DisplayAlerts = False
Sheets("tmpSheet").Delete
.DisplayAlerts = True
.ScreenUpdating = True
End With
End Sub

Note: you don't have to activate or unhide "tmpsheet" to delete it.


Gord Dibben MS Excel MVP

On Sat, 21 Jun 2008 11:41:26 -0500, "Scott" wrote:

I'm setting Application.ScreenUpdating = False before deleting a "hidden"
sheet in my workbook. My problem is that the warning saying "Data may exist
..." that pop ups when the "Delete" command is issued, is forcing me to
click "Delete". Is there anyway to auto answer the "Delete" dialog button
and prevent the user from getting any visual warning of the delete?



CODE:

Sub RemoveSheetDateHelper()

Application.ScreenUpdating = False

Sheets("tmpSheet").Visible = True
Sheets("tmpSheet").Select
Range("A1").Select
ActiveWindow.SelectedSheets.Delete

Application.ScreenUpdating = True
End Sub




All times are GMT +1. The time now is 09:00 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com