You can change the default display alert parameter of Excel using:
Application.DisplayAlerts = False
don’t forget to restore the standard behavior at the end of your process:
Application.DisplayAlerts = True
You can change the default display alert parameter of Excel using:
Application.DisplayAlerts = False
don’t forget to restore the standard behavior at the end of your process:
Application.DisplayAlerts = True