Thanks, but I'm not VBA savvy. Could you give me a little more detail how I
would use these statements or where I would put them?
> application.displayalerts = false
> 'your code to delete your 22 sheets
[quoted text clipped - 16 lines]
>> Any ideas to eliminate or bypass the dialog box and have the macro
>> automatically delete the tabs?
Dave Peterson - 04 Jul 2006 12:12 GMT
You have code in your macro to delete the 22 worksheets.
Just make sure that each set of delete statements is surrounded by those
statements:
application.displayalerts = false
worksheets("Sheet9999").delete
worksheets("sheet8888").delete
application.displayalerts = true
if this doesn't help, you may want to post the relevant portion of your code.
> Thanks, but I'm not VBA savvy. Could you give me a little more detail how I
> would use these statements or where I would put them?
[quoted text clipped - 22 lines]
> >
> > Dave Peterson

Signature
Dave Peterson