Excel Data into GUI table

Hi. I have a 66x3 cells of data. Im having a problem on importing this data from Excel to GUI table. How can I import them to the table? I want the results to show ONLY after I press a button. Is there a way to do it? Can you provide the code for it. Thank You very much!

4 Commenti

Adam Danz
Adam Danz il 12 Mar 2019
" Im having a problem on importing this data from Excel to GUI table"
Can you show what you've tried so far and explain why it's not working?
Ramon Ticzon
Ramon Ticzon il 12 Mar 2019
What I'm trying to do is just importing the excel data into array and put it into the workspace so I can select it in the 'Data' of UItable. My problem here is that the data is showing even if I am still not pressing a button (show results button).
Adam Danz
Adam Danz il 12 Mar 2019
Is there default data loaded into the GUI that appears as soon as the GUI is created? How could the GUI have access to data that doesn't exist yet?
Ramon Ticzon
Ramon Ticzon il 12 Mar 2019
What I mean is that I need the user to click a button before projecting the excel data.

Accedi per commentare.

 Risposta accettata

Adam Danz
Adam Danz il 12 Mar 2019
Here's an idea. Load your data ahead of time and store it in the UserData property of your button. That can be done anywhere in your code.
app.Button.UserData = data;
Then when the button is pressed and the ButtonPushedFcn callback is executed, you can move the data from the UserData property to the UItable.
function ButtonPushed(app, event)
app.UITable.Data = app.Button.UserData;
end

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by