S spock1971 Registered User. Local time Today, 14:55 Joined Nov 14, 2004 Messages 80 Apr 6, 2006 #1 I'm building a macro and part of the macro will be to delete a worksheet. How do I code not to say :'You are about to delete a sheet - proceed' message box. Cheers
I'm building a macro and part of the macro will be to delete a worksheet. How do I code not to say :'You are about to delete a sheet - proceed' message box. Cheers
___ ¯¯¯¯¯ Local time Today, 14:55 Joined Nov 27, 2003 Messages 595 Apr 6, 2006 #2 Code: Application.DisplayAlerts = False Your Code Here Application.DisplayAlerts = True