MATLAB: I need help in uitable

hi for all … please i need help . i am using uitable and i need to search between row and column .. such as i need to search in row (1) and column (3) in same time and i got the intersection of row and column
thanks for all

Best Answer

Get the data from the table like this
data = get(handles.uitable1, 'data');
Then to get the contents of the grid at the point where row 1 and column 3 intersect, simply do this:
theValue = data(1, 3);