warning message

  • Thread starter Thread starter Delali
  • Start date Start date
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
 
You can set it so that they don't show.

Application.DisplayAlerts = False


Then, at the end, set it back

Application.DisplayAlerts = True
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top