warning message

D

Delali

Hi,
Is there a way to program in VBA to automatically select
OK when a warning message pops up when a macro is running?

thanx
 
M

mark

You can set it so that they don't show.

Application.DisplayAlerts = False


Then, at the end, set it back

Application.DisplayAlerts = True
 
Top