Create an excel file in a specific folder
185 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Alessandro Poppi
il 23 Nov 2017
Commentato: AYUSH ANAND SAGAR
il 28 Ott 2020
I need to know how to create an excel file and save it in a specific folder. This is the code I am using:
filename = 'diagramm.xlsx';
xlswrite(filename,vector_1,'Fluid');
xlswrite(filename,vector_2,'Power');
I don't find anything working in the older answers.
0 Commenti
Risposta accettata
Image Analyst
il 23 Nov 2017
Modificato: Image Analyst
il 23 Nov 2017
Try this:
folder = 'c:/whatever';
if ~exist(folder, 'dir')
mkdir(folder);
end
baseFileName = 'diagramm.xlsx';
fullFileName = fullfile(folder, baseFileName);
xlswrite(fullFileName ,vector_1,'Fluid');
xlswrite(fullFileName ,vector_2,'Power');
2 Commenti
AYUSH ANAND SAGAR
il 28 Ott 2020
i wanna create an attendance excel sheet from the date entered by the user
how can i do that?
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Spreadsheets in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!