Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
I have a data that can be varied by the user using edit box . How can I output it on excel
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have created a panel consisting of 3 script box and corresponding 3 edit box in GUI, . I am also using 2 push buttons Save and Cancel.Now, when I run the code and when I type any value in edit box and click save button,it should save it in Excel sheet cell by cell i.e 1st edit box's value should be stored in 1st cell(say A1),2nd in 2nd cell(A2) and so on.
Please help me.
Antworten (1)
Image Analyst
am 17 Jul. 2014
% Get the strings in the edit boxes.
mystring1 = get(handles.editBox1, 'String');
mystring2 = get(handles.editBox2, 'String');
mystring3 = get(handles.editBox3, 'String');
% Stick it in a cell array
ca = cell(1,3);
ca(1,1) = {mystring1};
ca(1,2) = {mystring2};
ca(1,3) = {mystring3};
% Write to Excel
xlswrite(filename, ca);
0 Kommentare
Diese Frage ist geschlossen.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!