How to put table in listdlg
Show older comments
Hi I am trying to put the table "Information" into a list Dialouge box for a user to select and I keep getting errors. Can anyone help?
Information = readtable("Cooling Data.xlsx",'Sheet',"Information"); %Reads in the Information
%The reading of information was at the top of my code, I had cut out the other part of the code because it had no effect on the
%code i need help with
if strcmp(choice,'Detail')
selection = listdlg("PromptString",'Choose a material', "ListString",(Information))
mat = Information.Material(selection)
end
I keep getting these errors:
Conversion to cellstr from table is not possible.
liststring=cellstr(liststring);
3 Comments
Ameer Hamza
on 12 Nov 2020
What type of data is loaded in 'Information' variable. Can you attach it as a .mat file?
Sean St Cyr
on 12 Nov 2020
Sean St Cyr
on 12 Nov 2020
Accepted Answer
More Answers (0)
Categories
Find more on Spreadsheets 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!