How to assign a value against a string from 1st column to other?
Show older comments
Hi Everyone,
I have to write a code in which i can get an input from user and then this input can read from a table and pick a value against the user input.
My table is excel file and have these two columns as X and Z.

For example if user gives input from as 2A then value of Z assigned should be Z=0.15.
Similarly for user input 2B z should be Z=0.2.
Kind Regards.
Accepted Answer
More Answers (1)
Kevin Hellemans
on 17 Apr 2020
Hi,
The fastest way would be to create a Matlab variable directly. However, should you want to create a dynamic link to an Excel file, the following code may help.
First, I created an Excel file 'MyWorkBook':

% Read data from Excel
XLSTable = readtable('MyWorkBook.xlsx'); %if headers are set correctly, this function will create a table with X and Z columns
% Request info from user
UserValue = inputdlg('Please Provide X','Matlab Answers');
% Look Up Value in Table
idx = cellfun(@(x) strcmpi(x,UserValue{1}),XLSTable.X);
% Report Results
if sum(idx) == 1
msgbox(['Z Value: ' num2str(XLSTable.Z(idx))])
Z = num2str(XLSTable.Z(idx));
elseif sum(idx) == 0
msgbox(['Value not found'])
elseif sum(idx) > 1
msgbox(['Multiple Values found'])
Z = num2str(XLSTable.Z(idx));
end
I hope this helps!
Kevin
3 Comments
Muhammad Imran
on 17 Apr 2020
Kevin Hellemans
on 17 Apr 2020
Hi,
I've tested it on my system with 2A and 2B as well, both are working. Since the function reads the first columns as strings, it should not matter. The readtable was introduced in R2013b, so it should work, regular tables as well. Can you provide more details as to what is not working? What kind of feedback to you get?
Kevin
Muhammad Imran
on 18 Apr 2020
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!