I read data from excel file using readtable command as follows:
app.data=readtable("Data.xlsx",'Sheet',1);app.UITable.Data = app.data;app.UITable.ColumnName=app.data.Properties.VariableNames;app.UITable.ColumnEditable = true;
The Data consists of 6 columns, I want to add drop-down menu to column 4, then a correspond value appears in column 5 based on the selection in column 4 and use the value in column 5 and multiple it with the value in column 3 and the asnwer appears in column 6
Best Answer