Effacer les filtres
Effacer les filtres

Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

I have a data that can be varied by the user using edit box . How can I output it on excel

2 vues (au cours des 30 derniers jours)
KRUNAL
KRUNAL le 10 Juil 2014
Clôturé : MATLAB Answer Bot le 20 Août 2021
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.
  2 commentaires
KRUNAL
KRUNAL le 17 Juil 2014
I found it through some other method.Thanks for the suggestion.

Réponses (1)

Image Analyst
Image Analyst le 17 Juil 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);

Cette question est clôturée.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by