I’m deleting worksheets from a workbook using VBA code:
Sheets(“Sheet1”).Delete
This generates an alert box asking if I really want to delete the sheet. No big deal, except when I’m trying to delete 30 or 40 sheets I get an alert for each one! I figure there must be a check box to disable this somewhere in the options, but I sure can’t find it. Anyone know of a way to bypass these alerts?
Thanks.