Delete a Sheet without dialog
Application.DisplayAlerts = False
Sheets("Replace Info").Delete
Application.DisplayAlerts = True
Mike F
"Ken Loomis" wrote in message
...
I am using this to delete a worksheet:
Sheets("Replace Info").Delete
however, that causes a warning dialog box. How can I delete that worksheet
without a dialog box?
|