how to export data from app.UITable to file csv
3 views (last 30 days)
Show older comments
global data;
T=table(data);
app.UITable.Data=T;
filename='data.csv';
writetable(T,filename,'WriteRowNames', true);
1 Comment
Cris LaPierre
on 4 Nov 2021
What isn't working about the code you have written? Are there error messages? Please share the complete message (all the red text) if so.
Answers (0)
See Also
Categories
Find more on Data Import and Analysis in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!