Mega Code Archive

 
Categories / VisualBasic Script / Application
 

Stopping Excels Warning Prompts for Recorded Macros

Sub MyMacro( )       Application.DisplayAlerts = False       ActiveSheet.Delete       Application.DisplayAlerts = True End Sub