Réponse acceptée

Anurag Agrawal
Anurag Agrawal le 19 Juin 2020

0 votes

You can supress excel alerts/warnings using this command:
e = actxserver('Excel.Application');
set(e, 'DisplayAlerts', 0);
This will supress all the warings. So, if you want to start warning messages again after some point, use this:
set(e, 'DisplayAlerts', 1);

Plus de réponses (0)

Catégories

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by