How do I change the save file format in excel using activeX in Matlab
Afficher commentaires plus anciens
I currently have the following code.
file = 'C:\example\somefile.xlsx';
sheet = 'Sheet1'; %can be name or numeric index
row = 1;
excel = actxserver('Excel.Application');
workbook = excel.Workbooks.Open(file);
worksheet = workbook.Worksheets.Item(sheet);
worksheet.Rows.Item(row).Delete;
workbook.Save;
excel.Quit;
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
I want to change the default
"Save files in this format" : Excel Workbook (*.xlsx)
to
"Save files in this format" : CSV (Comma delimited)(*.csv)
Réponses (3)
Fangjun Jiang
le 16 Jan 2019
Modifié(e) : Fangjun Jiang
le 16 Jan 2019
Worked like a charm, in R2018b, MS Office 2016.
file = 'Book1.xlsx';
sheet = 'Sheet1';
excel = actxserver('Excel.Application');
workbook = excel.Workbooks.Open(fullfile(pwd,file));
worksheet = workbook.Worksheets.Item(sheet);
xlCSV=6; %this constant is defined by MS Excel
ExcelApp.DisplayAlerts=false;% ignore prompt
workbook.SaveAs(fullfile(pwd,'Book2'),xlCSV);
excel.Quit;
3 commentaires
Matthew Isaman
le 16 Jan 2019
Fangjun Jiang
le 16 Jan 2019
I don't know if you can change the default save option. But the statement ExcelApp.DisplayAlerts=false will get rid of that pop dialog.
Matthew Isaman
le 21 Jan 2019
Matthew Isaman
le 16 Jan 2019
0 votes
Matthew Isaman
le 16 Jan 2019
0 votes
1 commentaire
Fangjun Jiang
le 16 Jan 2019
You need to do some experiments. See the updated answer.
Catégories
En savoir plus sur Spreadsheets dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!