How to add data to an existing UITable in app designer?
10 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Data is loaded to UITable from an Excel file with startupfcn, then some more data is needed to be written to the same UITable. When l try to add more data, the previous data vanishes. l am looking for something like in writematrix('WriteMode','append').
0 Kommentare
Antworten (1)
Voss
am 27 Nov. 2023
old_data = app.UITable.Data;
app.UITable.Data = [old_data; new_data];
0 Kommentare
Siehe auch
Kategorien
Mehr zu Develop Apps Using App Designer finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!