Effacer les filtres
Effacer les filtres

Anyway to turn off Excel automatic calculation by a MatLab command for faster export ?

7 vues (au cours des 30 derniers jours)
PA00
PA00 le 23 Jan 2012
Commenté : Rouven Müller le 28 Oct 2022
Hello, I am using a excel template file to which I export data. The amount of data is big so I use xlswrite1 command from:
This enables me to lose less time on data exporting. However I noticed that if I disable the auto calculation on Excel the export is even faster.
For sure this happens because my excel file template has graphs for the data to be exported and each time a new data is exported the graph are rebuilt taking its time.
My idea was to somehow, by a MatLab command, disable the Excel auto calculation on the start of exportation and enable it on the end.
Any way to this by a activex command or any other way?
Thanks.

Réponses (1)

Keld Stefan Pedersen
Keld Stefan Pedersen le 12 Jan 2016
This should do the trick:
Excel = actxserver('Excel.Application');
Excel.Calculation = 'xlCalculationManual';
% Update worksheet here
Excel.Calculation = 'xlCalculationAutomatic';
cheers
  1 commentaire
Rouven Müller
Rouven Müller le 28 Oct 2022
It's not working
but no problems with
Excel.Application.ScreenUpdating = false;
Excel.Application.EnableEvents = false;

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by