Disable Worksheet Delete Warning

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Greetings:

When my VBA macro deletes one of the worksheets in
my workbook (through the Sheet.Delete method), I get
the following warning:

"Data may exist in the sheet(s) selected for deletion.
To permanently delete the data, press Delete."

I then have to click on the Delete button to proceed with
the action.

Is there any way to suppress this annoying warning so
that the worksheet will automatically get deleted?

Respectfully,

Charles
 
precede it with

Application.DisplayAlerts = False

and reset to True after.

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
Back
Top