how to save a UITable in Excell along with Rows & Column Names (Appdesigner, R2020a)
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
taimour sadiq
le 24 Oct 2020
Commenté : Mario Malic
le 8 Nov 2020
i have a data in in a variable 'A', i want to save it in excell file with rows and column names as shown in fighure below.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/390768/image.jpeg)
i tried
A = app.d;
filter = {'*.xlsx'};
[file,path] = uiputfile(filter);
filename = fullfile(path,file);
xlswrite(filename,A);
but this only save table not row names(a,b,c,d,e) and colomn names(Data,Average). kindly guide.
Réponse acceptée
Mario Malic
le 1 Nov 2020
Use writetable to solve your problem, there's a Name-Value pair that corresponds to your need. Here's the example: https://www.mathworks.com/help/matlab/ref/writetable.html#btydetm-1
5 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Spreadsheets dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!